+ * An array containing zero to six values representing control + * surface data as follows: + *
+ *+ * 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: + *
+ *+ * 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: + *
+ *+ * 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: + *
+ *+ * 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 @@ + +An array containing zero to six values representing control surface data as follows:
+ *+ * 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 valuesAn array containing zero to six values representing control surface data as follows:
+ *+ * 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 valuesAn array containing position elements as follows:
+ *+ * 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 valuesAn array containing position elements as follows:
+ *+ * 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 ] +[E