diff --git a/.clang-format b/.clang-format
new file mode 100644
index 00000000..2f21db8e
--- /dev/null
+++ b/.clang-format
@@ -0,0 +1,399 @@
+# Made by: Ingmar Delsink
+# https://ingmar.dels.ink
+# See http://clang.llvm.org/docs/ClangFormatStyleOptions.html
+# Tested with: clang-format version 3.7.1
+
+# General
+#########
+
+# The style used for all options not specifically set in the configuration.
+# This option is supported only in the clang-format configuration (both within -style='{...}' and the .clang-format file).
+# Possible values:
+# LLVM A style complying with the LLVM coding standards
+# Google A style complying with Google’s C++ style guide
+# Chromium A style complying with Chromium’s style guide
+# Mozilla A style complying with Mozilla’s style guide
+# WebKit A style complying with WebKit’s style guide
+#BasedOnStyle:
+
+# TabWidth (unsigned)
+# The number of columns used for tab stops.
+TabWidth: 4
+
+# IndentWidth (unsigned)
+# The number of columns to use for indentation.
+IndentWidth: 4
+
+# UseTab (UseTabStyle)
+# The way to use tab characters in the resulting file.
+# Possible values:
+# UT_Never (in configuration: Never) Never use tab.
+# UT_ForIndentation (in configuration: ForIndentation) Use tabs only for indentation.
+# UT_Always (in configuration: Always) Use tabs whenever we need to fill whitespace that spans at least from one tab stop to the next one.
+UseTab: Never
+
+# C++
+#####
+
+# Language (LanguageKind)
+# Language, this format style is targeted at.
+# Possible values:
+# LK_None (in configuration: None) Do not use.
+# LK_Cpp (in configuration: Cpp) Should be used for C, C++, ObjectiveC, ObjectiveC++.
+# LK_Java (in configuration: Java) Should be used for Java.
+# LK_JavaScript (in configuration: JavaScript) Should be used for JavaScript.
+# LK_Proto (in configuration: Proto) Should be used for Protocol Buffers (https://developers.google.com/protocol-buffers/).
+# LK_TableGen (in configuration: TableGen) Should be used for TableGen code.
+Language: Cpp
+
+# Standard (LanguageStandard)
+# Format compatible with this standard, e.g. use A > instead of A> for LS_Cpp03.
+# Possible values:
+# LS_Cpp03 (in configuration: Cpp03) Use C++03-compatible syntax.
+# LS_Cpp11 (in configuration: Cpp11) Use features of C++11 (e.g. A> instead of A >).
+# LS_Auto (in configuration: Auto) Automatic detection based on the input.
+Standard: Cpp11
+
+# Pointer and reference alignment style. Possible values: Left, Right, Middle.
+PointerAlignment: Right
+
+# AccessModifierOffset (int)
+# The extra indent or outdent of access modifiers, e.g. public:.
+AccessModifierOffset: 0
+
+# AlignAfterOpenBracket (BracketAlignmentStyle)
+# If true, horizontally aligns arguments after an open bracket.
+# This applies to round brackets (parentheses), angle brackets and square brackets.
+# Possible values:
+# BAS_Align (in configuration: Align) Align parameters on the open bracket, e.g.:
+# someLongFunction(argument1,
+# argument2);
+# BAS_DontAlign (in configuration: DontAlign) Don’t align, instead use ContinuationIndentWidth, e.g.:
+# someLongFunction(argument1,
+# argument2);
+# BAS_AlwaysBreak (in configuration: AlwaysBreak) Always break after an open bracket, if the parameters don’t fit on a single line, e.g.:
+# someLongFunction(
+# argument1, argument2);
+AlignAfterOpenBracket: Align
+
+# AlignConsecutiveAssignments (bool)
+# If true, aligns consecutive assignments.
+# This will align the assignment operators of consecutive lines. This will result in formattings like
+# int aaaa = 12;
+# int b = 23;
+# int ccc = 23;
+AlignConsecutiveAssignments: false
+
+# AlignEscapedNewlinesLeft (bool)
+# If true, aligns escaped newlines as far left as possible. Otherwise puts them into the right-most column.
+AlignEscapedNewlinesLeft: true
+
+# AlignOperands (bool)
+# If true, horizontally align operands of binary and ternary expressions.
+# Specifically, this aligns operands of a single expression that needs to be split over multiple lines, e.g.:
+# int aaa = bbbbbbbbbbbbbbb +
+# ccccccccccccccc;
+AlignOperands: false
+
+# AlignTrailingComments (bool)
+# If true, aligns trailing comments.
+AlignTrailingComments: true
+
+# AllowAllParametersOfDeclarationOnNextLine (bool)
+# Allow putting all parameters of a function declaration onto the next line even if BinPackParameters is false.
+AllowAllParametersOfDeclarationOnNextLine: false
+
+# AllowShortBlocksOnASingleLine (bool)
+# Allows contracting simple braced statements to a single line.
+AllowShortBlocksOnASingleLine: false
+
+# AllowShortCaseLabelsOnASingleLine (bool)
+# If true, short case labels will be contracted to a single line.
+AllowShortCaseLabelsOnASingleLine: true
+
+# AllowShortFunctionsOnASingleLine (ShortFunctionStyle)
+# Dependent on the value, int f() { return 0; } can be put on a single line.
+# Possible values:
+# SFS_None (in configuration: None) Never merge functions into a single line.
+# SFS_Empty (in configuration: Empty) Only merge empty functions.
+# SFS_Inline (in configuration: Inline) Only merge functions defined inside a class. Implies “empty”.
+# SFS_All (in configuration: All) Merge all functions fitting on a single line.
+AllowShortFunctionsOnASingleLine: false
+
+# AllowShortIfStatementsOnASingleLine (bool)
+# If true, if (a) return; can be put on a single line.
+AllowShortIfStatementsOnASingleLine: false
+
+# AllowShortLoopsOnASingleLine (bool)
+# If true, while (true) continue; can be put on a single line.
+AllowShortLoopsOnASingleLine: false
+
+# AlwaysBreakBeforeMultilineStrings (bool)
+# If true, always break before multiline string literals.
+# This flag is mean to make cases where there are multiple multiline strings in a file look more consistent. Thus, it will only take effect if wrapping the string at that point leads to it being indented ContinuationIndentWidth spaces from the start of the line.
+AlwaysBreakBeforeMultilineStrings: false
+
+# AlwaysBreakTemplateDeclarations (bool)
+# If true, always break after the template<...> of a template declaration.
+AlwaysBreakTemplateDeclarations: false
+
+# BinPackArguments (bool)
+# If false, a function call’s arguments will either be all on the same line or will have one line each.
+#BinPackArguments: false
+
+# BinPackParameters (bool)
+# If false, a function declaration’s or function definition’s parameters will either all be on the same line or will have one line each.
+BinPackParameters: false
+
+# BraceWrapping (BraceWrappingFlags)
+# Control of individual brace wrapping cases.
+# If BreakBeforeBraces is set to BS_Custom, use this to specify how each individual brace case should be handled. Otherwise, this is ignored.
+# Nested configuration flags:
+# bool AfterClass Wrap class definitions.
+# bool AfterControlStatement Wrap control statements (if/for/while/switch/..).
+# bool AfterEnum Wrap enum definitions.
+# bool AfterFunction Wrap function definitions.
+# bool AfterNamespace Wrap namespace definitions.
+# bool AfterObjCDeclaration Wrap ObjC definitions (@autoreleasepool, interfaces, ..).
+# bool AfterStruct Wrap struct definitions.
+# bool AfterUnion Wrap union definitions.
+# bool BeforeCatch Wrap before catch.
+# bool BeforeElse Wrap before else.
+# bool IndentBraces Indent the wrapped braces themselves.
+#BraceWrapping:
+
+# BreakAfterJavaFieldAnnotations (bool)
+# Break after each annotation on a field in Java files.
+#BreakAfterJavaFieldAnnotations:
+
+# BreakBeforeBinaryOperators (BinaryOperatorStyle)
+# The way to wrap binary operators.
+# Possible values:
+# BOS_None (in configuration: None) Break after operators.
+# BOS_NonAssignment (in configuration: NonAssignment) Break before operators that aren’t assignments.
+# BOS_All (in configuration: All) Break before operators.
+BreakBeforeBinaryOperators: false
+
+# BreakBeforeBraces (BraceBreakingStyle)
+# The brace breaking style to use.
+# Possible values:
+# BS_Attach (in configuration: Attach) Always attach braces to surrounding context.
+# BS_Linux (in configuration: Linux) Like Attach, but break before braces on function, namespace and class definitions.
+# BS_Mozilla (in configuration: Mozilla) Like Attach, but break before braces on enum, function, and record definitions.
+# BS_Stroustrup (in configuration: Stroustrup) Like Attach, but break before function definitions, catch, and else.
+# BS_Allman (in configuration: Allman) Always break before braces.
+# BS_GNU (in configuration: GNU) Always break before braces and add an extra level of indentation to braces of control statements, not to those of class, function or other definitions.
+# BS_WebKit (in configuration: WebKit) Like Attach, but break before functions.
+# BS_Custom (in configuration: Custom) Configure each individual brace in BraceWrapping.
+BreakBeforeBraces: Allman
+
+# BreakBeforeTernaryOperators (bool)
+# If true, ternary operators will be placed after line breaks.
+BreakBeforeTernaryOperators: false
+
+# BreakConstructorInitializersBeforeComma (bool)
+# Always break constructor initializers before commas and align the commas with the colon.
+BreakConstructorInitializersBeforeComma: false
+
+# BreakStringLiterals (bool)
+# Allow breaking string literals when formatting.
+#BreakStringLiterals:
+
+# ColumnLimit (unsigned)
+# The column limit.
+# A column limit of 0 means that there is no column limit. In this case, clang-format will respect the input’s line breaking decisions within statements unless they contradict other rules.
+ColumnLimit: 80
+
+# CommentPragmas (std::string)
+# A regular expression that describes comments with special meaning, which should not be split into lines or otherwise changed.
+CommentPragmas: ''
+
+# ConstructorInitializerAllOnOneLineOrOnePerLine (bool)
+# If the constructor initializers don’t fit on a line, put each initializer on its own line.
+ConstructorInitializerAllOnOneLineOrOnePerLine: false
+
+# ConstructorInitializerIndentWidth (unsigned)
+# The number of characters to use for indentation of constructor initializer lists.
+ConstructorInitializerIndentWidth: 0
+
+# ContinuationIndentWidth (unsigned)
+# Indent width for line continuations.
+ContinuationIndentWidth: 4
+
+# Cpp11BracedListStyle (bool)
+# If true, format braced lists as best suited for C++11 braced lists.
+# Important differences: - No spaces inside the braced list. - No line break before the closing brace. - Indentation with the continuation indent, not with the block indent.
+# Fundamentally, C++11 braced lists are formatted exactly like function calls would be formatted in their place. If the braced list follows a name (e.g. a type or variable name), clang-format formats as if the {} were the parentheses of a function call with that name. If there is no name, a zero-length name is assumed.
+Cpp11BracedListStyle: false
+
+# DerivePointerAlignment (bool)
+# If true, analyze the formatted file for the most common alignment of & and \*. PointerAlignment is then used only as fallback.
+DerivePointerBinding: false
+
+# DisableFormat (bool)
+# Disables formatting completely.
+#DisableFormat:
+
+# ExperimentalAutoDetectBinPacking (bool)
+# If true, clang-format detects whether function calls and definitions are formatted with one parameter per line.
+# Each call can be bin-packed, one-per-line or inconclusive. If it is inconclusive, e.g. completely on one line, but a decision needs to be made, clang-format analyzes whether there are other bin-packed cases in the input file and act accordingly.
+# NOTE: This is an experimental flag, that might go away or be renamed. Do not use this in config files, etc. Use at your own risk.
+#ExperimentalAutoDetectBinPacking:
+
+# ForEachMacros (std::vector)
+# A vector of macros that should be interpreted as foreach loops instead of as function calls.
+# These are expected to be macros of the form:
+# FOREACH(, ...)
+#
+# In the .clang-format configuration file, this can be configured like:
+# ForEachMacros: ['RANGES_FOR', 'FOREACH']
+# For example: BOOST_FOREACH.
+#ForEachMacros:
+
+# IncludeCategories (std::vector)
+# Regular expressions denoting the different #include categories used for ordering #includes.
+# These regular expressions are matched against the filename of an include (including the <> or “”) in order. The value belonging to the first matching regular expression is assigned and #includes are sorted first according to increasing category number and then alphabetically within each category.
+# If none of the regular expressions match, INT_MAX is assigned as category. The main header for a source file automatically gets category 0. so that it is generally kept at the beginning of the #includes (http://llvm.org/docs/CodingStandards.html#include-style). However, you can also assign negative priorities if you have certain headers that always need to be first.
+# To configure this in the .clang-format file, use:
+# IncludeCategories:
+# - Regex: '^"(llvm|llvm-c|clang|clang-c)/'
+# Priority: 2
+# - Regex: '^(<|"(gtest|isl|json)/)'
+# Priority: 3
+# - Regex: '.\*'
+# Priority: 1
+#IncludeCategories:
+
+# IndentCaseLabels (bool)
+# Indent case labels one level from the switch statement.
+# When false, use the same indentation level as for the switch statement. Switch statement body is always indented one level more than case labels.
+IndentCaseLabels: false
+
+# IndentFunctionDeclarationAfterType (bool)
+# If true, indent when breaking function declarations which are not also definitions after the type.
+IndentFunctionDeclarationAfterType: false
+
+# IndentWrappedFunctionNames (bool)
+# Indent if a function definition or declaration is wrapped after the type.
+#IndentWrappedFunctionNames:
+
+# KeepEmptyLinesAtTheStartOfBlocks (bool)
+# If true, empty lines at the start of blocks are kept.
+#KeepEmptyLinesAtTheStartOfBlocks:
+
+# MacroBlockBegin (std::string)
+# A regular expression matching macros that start a block.
+#MacroBlockBegin:
+
+# MacroBlockEnd (std::string)
+# A regular expression matching macros that end a block.
+#MacroBlockEnd:
+
+# MaxEmptyLinesToKeep (unsigned)
+# The maximum number of consecutive empty lines to keep.
+MaxEmptyLinesToKeep: 2
+
+# NamespaceIndentation (NamespaceIndentationKind)
+# The indentation used for namespaces.
+# Possible values:
+# NI_None (in configuration: None) Don’t indent in namespaces.
+# NI_Inner (in configuration: Inner) Indent only in inner namespaces (nested in other namespaces).
+# NI_All (in configuration: All) Indent in all namespaces.
+NamespaceIndentation: None
+
+# ObjCBlockIndentWidth (unsigned)
+# The number of characters to use for indentation of ObjC blocks.
+#ObjCBlockIndentWidth:
+
+# ObjCSpaceAfterProperty (bool)
+# Add a space after @property in Objective-C, i.e. use @property (readonly) instead of @property(readonly).
+ObjCSpaceAfterProperty: true
+
+# ObjCSpaceBeforeProtocolList (bool)
+# Add a space in front of an Objective-C protocol list, i.e. use Foo instead of Foo.
+ObjCSpaceBeforeProtocolList: true
+
+# PenaltyBreakBeforeFirstCallParameter (unsigned)
+# The penalty for breaking a function call after call(.
+PenaltyBreakBeforeFirstCallParameter: 100
+
+# PenaltyBreakComment (unsigned)
+# The penalty for each line break introduced inside a comment.
+PenaltyBreakComment: 100
+
+# PenaltyBreakFirstLessLess (unsigned)
+# The penalty for breaking before the first <<.
+PenaltyBreakFirstLessLess: 0
+
+# PenaltyBreakString (unsigned)
+# The penalty for each line break introduced inside a string literal.
+PenaltyBreakString: 100
+
+# PenaltyExcessCharacter (unsigned)
+# The penalty for each character outside of the column limit.
+PenaltyExcessCharacter: 1
+
+# PenaltyReturnTypeOnItsOwnLine (unsigned)
+# Penalty for putting the return type of a function onto its own line.
+PenaltyReturnTypeOnItsOwnLine: 20
+
+# PointerAlignment (PointerAlignmentStyle)
+# Pointer and reference alignment style.
+# Possible values:
+# PAS_Left (in configuration: Left) Align pointer to the left.
+# PAS_Right (in configuration: Right) Align pointer to the right.
+# PAS_Middle (in configuration: Middle) Align pointer in the middle.
+#PointerAlignment:
+
+# ReflowComments (bool)
+# If true, clang-format will attempt to re-flow comments.
+#ReflowComments: true (from v3.9)
+
+# SortIncludes (bool)
+# If true, clang-format will sort #includes.
+#SortIncludes: false (from v3.9)
+
+# SpaceAfterCStyleCast (bool)
+# If true, a space may be inserted after C style casts.
+SpaceAfterCStyleCast: false
+
+# SpaceBeforeAssignmentOperators (bool)
+# If false, spaces will be removed before assignment operators.
+SpaceBeforeAssignmentOperators: true
+
+# SpaceBeforeParens (SpaceBeforeParensOptions)
+# Defines in which cases to put a space before opening parentheses.
+# Possible values:
+# SBPO_Never (in configuration: Never) Never put a space before opening parentheses.
+# SBPO_ControlStatements (in configuration: ControlStatements) Put a space before opening parentheses only after control statement keywords (for/if/while...).
+# SBPO_Always (in configuration: Always) Always put a space before opening parentheses, except when it’s prohibited by the syntax rules (in function-like macro definitions) or when determined by other style rules (after unary operators, opening parentheses, etc.)
+SpaceBeforeParens: ControlStatements
+
+# SpaceInEmptyParentheses (bool)
+# If true, spaces may be inserted into ().
+SpaceInEmptyParentheses: false
+
+# SpacesBeforeTrailingComments (unsigned)
+# The number of spaces before trailing line comments (// - comments).
+# This does not affect trailing block comments (/* - comments) as those commonly have different usage patterns and a number of special cases.
+SpacesBeforeTrailingComments: 1
+
+# SpacesInAngles (bool)
+# If true, spaces will be inserted after < and before > in template argument lists.
+SpacesInAngles: false
+
+# SpacesInCStyleCastParentheses (bool)
+# If true, spaces may be inserted into C style casts.
+SpacesInCStyleCastParentheses: false
+
+# SpacesInContainerLiterals (bool)
+# If true, spaces are inserted inside container literals (e.g. ObjC and Javascript array and dict literals).
+SpacesInContainerLiterals: false
+
+# SpacesInParentheses (bool)
+# If true, spaces will be inserted after ( and before ).
+SpacesInParentheses: false
+
+# SpacesInSquareBrackets (bool)
+# If true, spaces will be inserted after [ and before ].
+SpacesInSquareBrackets: false
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 0ee313aa..adb1b957 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -10,7 +10,7 @@ Closes # (issue)
- [ ] Code has been tested on STM32 hardware.
- [ ] Changes do not generate any new compiler warnings.
-- [ ] Code has been formatted using `trunk fmt`.
+- [ ] Code has been formatted using `make format`.
- [ ] Commit messages follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#specification) specification.
### Additional Notes
diff --git a/.github/workflows/trunk-action.yaml b/.github/workflows/trunk-action.yaml
new file mode 100644
index 00000000..1e3af94e
--- /dev/null
+++ b/.github/workflows/trunk-action.yaml
@@ -0,0 +1,29 @@
+name: Trunk Code Quality
+on:
+ push:
+ branches: [main]
+ pull_request:
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
+ cancel-in-progress: true
+
+permissions: read-all
+
+jobs:
+ trunk_check:
+ name: Trunk Code Quality Runner
+ runs-on: ubuntu-latest
+ permissions:
+ checks: write
+ contents: read
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Install cppcheck
+ run: sudo apt-get update && sudo apt-get install -y cppcheck
+
+ - name: Trunk Code Quality
+ uses: trunk-io/trunk-action@v1
diff --git a/.gitignore b/.gitignore
index 6998e262..bd6e8cd4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -159,3 +159,6 @@ misra.txt
# TraceX
*.trx
+
+# CANoe
+*.cbf
diff --git a/.gitmodules b/.gitmodules
index 4b5e7c7a..c9d3cf62 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,6 +1,6 @@
-[submodule "src/Middlewares/SUFST/rtcan"]
- path = src/Middlewares/SUFST/rtcan
+[submodule "src/SUFST/Middlewares/rtcan"]
+ path = src/SUFST/Middlewares/rtcan
url = https://github.com/sufst/rtcan
-[submodule "src/Middlewares/SUFST/can-defs"]
- path = src/Middlewares/SUFST/can-defs
+[submodule "src/SUFST/Middlewares/can-defs"]
+ path = src/SUFST/Middlewares/can-defs
url = https://github.com/sufst/can-defs
diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml
index 8f77aef3..c52796ec 100644
--- a/.trunk/trunk.yaml
+++ b/.trunk/trunk.yaml
@@ -58,8 +58,10 @@ lint:
- src/AZURE_RTOS/**
- src/Core/**
- src/Drivers/**
- - src/Middlewares/ST
- - scripts/*
+ - src/Middlewares/**
+ - src/FileX/**
+ - src/USBX/**
+ - scripts/**
- linters: [clang-format]
paths:
- src/SUFST/Inc/config.h
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
index 1da2201d..05d2a48d 100644
--- a/.vscode/c_cpp_properties.json
+++ b/.vscode/c_cpp_properties.json
@@ -11,7 +11,7 @@
"${workspaceFolder}/src/Drivers/CMSIS/**",
"${workspaceFolder}/src/Middlewares/ST/threadx/common/inc",
"${workspaceFolder}/src/Middlewares/ST/threadx/ports/cortex_m7/gnu/inc",
- "${workspaceFolder}/src/SUFST/Inc/CAN",
+ "${workspaceFolder}/src/SUFST/Inc/",
"${workspaceFolder}/src/Drivers/STM32F7xx_HAL_Driver/Inc"
],
"defines": [
diff --git a/.vscode/launch.json b/.vscode/launch.json
index f6eb2b89..5f46455f 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -4,7 +4,7 @@
{
"cwd": "${workspaceFolder}",
"name": "debug (stutil)",
- "executable": "build/VCU.elf",
+ "executable": "build/debug/VCU.elf",
"request": "launch",
"type": "cortex-debug",
"showDevDebugOutput": "none",
@@ -16,7 +16,7 @@
// debug with openocd
{
"cwd": "${workspaceFolder}",
- "executable": "build/VCU.elf",
+ "executable": "build/debug/VCU.elf",
"name": "debug (openocd)",
"request": "launch",
"type": "cortex-debug",
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 3f664adf..f082f1c2 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -50,10 +50,13 @@
"torque_map_funcs.h": "c",
"rtds.h": "c",
"pm100.h": "c",
- "can_c.h": "c",
+ "can_t.h": "c",
"ctrl.h": "c"
},
+ "cortex-debug.gdbPath": "gdb-multiarch",
"cortex-debug.variableUseNaturalFormat": true,
- "C_Cpp.errorSquiggles": "Enabled",
- "mcu-debug.rtos-views.showRTOS": false
+ "C_Cpp.errorSquiggles": "enabled",
+ "C_Cpp.intelliSenseEngine": "default",
+ "mcu-debug.rtos-views.showRTOS": false,
+ "clangd.enable": false
}
diff --git a/Makefile b/Makefile
index 17f2e383..7d80a402 100644
--- a/Makefile
+++ b/Makefile
@@ -17,15 +17,17 @@
###############################################################################
TARGET = VCU
-BUILD_DIR = build
-DEBUG = 1
+DEBUG = 0
C_STANDARD = c11
# defines
ALWAYS_C_DEFS = \
-DTX_INCLUDE_USER_DEFINE_FILE \
-DUSE_HAL_DRIVER \
--DSTM32F746xx
+-DSTM32F746xx \
+-DRTCAN_OSAL_THREADX \
+-DFX_INCLUDE_USER_DEFINE_FILE \
+-DUX_INCLUDE_USER_DEFINE_FILE
DEBUG_C_DEFS = \
-DDEBUG \
@@ -95,8 +97,15 @@ src/SUFST/Src/vcu.c \
src/SUFST/Src/config.c \
src/SUFST/Src/Functions/clip_to_range.c \
src/SUFST/Src/Functions/torque_map.c \
+src/SUFST/Src/Functions/compressor.c \
+src/SUFST/Src/Functions/torque_limiters.c \
+src/SUFST/Src/Services/mode_switch_values.c \
+src/SUFST/Src/Interfaces/usb_mass_storage_mode.c \
+src/SUFST/Src/Interfaces/adc_scan.c \
src/SUFST/Src/Interfaces/apps.c \
src/SUFST/Src/Interfaces/bps.c \
+src/SUFST/Src/Interfaces/io.c \
+src/SUFST/Src/Interfaces/rs232.c \
src/SUFST/Src/Interfaces/rtds.c \
src/SUFST/Src/Interfaces/scs.c \
src/SUFST/Src/Interfaces/trc.c \
@@ -108,6 +117,9 @@ src/SUFST/Src/Services/pm100.c \
src/SUFST/Src/Services/tick.c \
src/SUFST/Src/Services/log.c \
src/SUFST/Src/Services/heartbeat.c \
+src/SUFST/Src/Services/wheelspeed.c \
+src/SUFST/Src/Services/fans.c \
+src/SUFST/Src/Services/sd_logging.c \
src/SUFST/Src/Test/testbench.c \
src/SUFST/Src/Test/apps_testbench_data.c \
src/Core/Src/main.c \
@@ -115,12 +127,207 @@ src/Core/Src/adc.c \
src/Core/Src/can.c \
src/Core/Src/gpio.c \
src/Core/Src/usart.c \
+src/Core/Src/i2c.c \
+src/Core/Src/spi.c \
+src/Core/Src/tim.c \
+src/Core/Src/usb_otg.c \
+src/Core/Src/sysmem.c \
+src/Core/Src/syscalls.c \
src/Core/Src/stm32f7xx_it.c \
src/Core/Src/stm32f7xx_hal_msp.c \
-src/Core/stm32f7xx_hal_timebase_tim.c \
+src/Core/Src/stm32f7xx_hal_timebase_tim.c \
src/Core/Src/system_stm32f7xx.c \
-src/Core/app_threadx.c \
+src/Core/Src/app_threadx.c \
src/AZURE_RTOS/App/app_azure_rtos.c \
+src/USBX/App/app_usbx_device.c \
+src/USBX/App/app_usbx_host.c \
+src/USBX/App/ux_device_msc.c \
+src/USBX/App/ux_device_descriptors.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_activate.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_control_request.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_csw_send.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_deactivate.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_entry.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_format.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_get_configuration.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_get_performance.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_get_status_notification.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_initialize.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_inquiry.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_mode_select.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_mode_sense.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_prevent_allow_media_removal.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_read.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_read_capacity.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_read_disk_information.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_read_dvd_structure.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_read_format_capacity.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_read_toc.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_report_key.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_request_sense.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_start_stop.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_synchronize_cache.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_test_ready.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_thread.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_uninitialize.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_verify.c \
+src/Middlewares/ST/usbx/common/usbx_device_classes/src/ux_device_class_storage_write.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_alternate_setting_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_alternate_setting_set.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_class_register.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_class_unregister.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_clear_feature.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_configuration_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_configuration_set.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_control_request_process.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_descriptor_send.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_disconnect.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_endpoint_stall.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_get_status.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_host_wakeup.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_initialize.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_interface_delete.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_interface_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_interface_set.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_interface_start.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_microsoft_extension_register.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_set_feature.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_transfer_abort.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_transfer_all_request_abort.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_transfer_request.c \
+src/Middlewares/ST/usbx/common/core/src/ux_device_stack_uninitialize.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_bandwidth_check.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_bandwidth_claim.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_bandwidth_release.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_call.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_device_scan.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_instance_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_instance_destroy.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_instance_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_instance_verify.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_interface_scan.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_register.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_class_unregister.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_configuration_descriptor_parse.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_configuration_enumerate.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_configuration_instance_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_configuration_instance_delete.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_configuration_interface_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_configuration_interface_scan.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_configuration_set.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_delay_ms.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_address_set.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_configuration_activate.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_configuration_deactivate.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_configuration_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_configuration_reset.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_configuration_select.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_descriptor_read.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_remove.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_resources_free.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_device_string_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_endpoint_instance_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_endpoint_instance_delete.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_endpoint_reset.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_endpoint_transfer_abort.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_enum_thread_entry.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_hcd_register.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_hcd_thread_entry.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_hcd_transfer_request.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_hcd_unregister.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_hnp_polling_thread_entry.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_initialize.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_interface_endpoint_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_interface_instance_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_interface_instance_delete.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_interface_set.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_interface_setting_select.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_interfaces_scan.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_new_configuration_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_new_device_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_new_device_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_new_endpoint_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_new_interface_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_rh_change_process.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_rh_device_extraction.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_rh_device_insertion.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_role_swap.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_transfer_request.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_transfer_request_abort.c \
+src/Middlewares/ST/usbx/common/core/src/ux_host_stack_uninitialize.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_debug_callback_register.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_debug_log.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_delay_ms.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_descriptor_pack.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_descriptor_parse.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_error_callback_register.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_event_flags_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_event_flags_delete.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_event_flags_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_event_flags_set.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_long_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_long_get_big_endian.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_long_put.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_long_put_big_endian.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_allocate.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_allocate_add_safe.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_allocate_mulc_safe.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_allocate_mulv_safe.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_compare.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_copy.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_free.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_free_block_best_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_memory_set.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_mutex_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_mutex_delete.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_mutex_off.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_mutex_on.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_pci_class_scan.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_pci_read.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_pci_write.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_physical_address.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_semaphore_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_semaphore_delete.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_semaphore_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_semaphore_put.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_set_interrupt_handler.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_short_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_short_get_big_endian.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_short_put.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_short_put_big_endian.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_string_length_check.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_string_length_get.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_string_to_unicode.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_thread_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_thread_delete.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_thread_identify.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_thread_relinquish.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_thread_resume.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_thread_schedule_other.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_thread_sleep.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_thread_suspend.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_timer_create.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_unicode_to_string.c \
+src/Middlewares/ST/usbx/common/core/src/ux_utility_virtual_address.c \
+src/Middlewares/ST/usbx/common/core/src/ux_system_error_handler.c \
+src/Middlewares/ST/usbx/common/core/src/ux_system_initialize.c \
+src/Middlewares/ST/usbx/common/core/src/ux_system_uninitialize.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_callback.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_endpoint_create.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_endpoint_destroy.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_endpoint_reset.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_endpoint_stall.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_endpoint_status.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_frame_number_get.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_function.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_initialize.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_initialize_complete.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_interrupt_handler.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_transfer_abort.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_transfer_request.c \
+src/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/ux_dcd_stm32_uninitialize.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c \
@@ -142,6 +349,9 @@ src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_tim_ex.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_uart_ex.c \
+src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_usart.c \
+src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_spi.c \
+src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_spi_ex.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pcd.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_pcd_ex.c \
src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_usb.c \
@@ -313,28 +523,270 @@ src/Middlewares/ST/threadx/common/src/tx_trace_isr_exit_insert.c \
src/Middlewares/ST/threadx/common/src/tx_trace_object_register.c \
src/Middlewares/ST/threadx/common/src/tx_trace_object_unregister.c \
src/Middlewares/ST/threadx/common/src/tx_trace_user_event_insert.c \
-src/Middlewares/SUFST/rtcan/src/rtcan.c \
-src/Middlewares/SUFST/can-defs/out/can_c.c \
-src/Middlewares/SUFST/can-defs/out/can_s.c
+src/Middlewares/ST/threadx/utility/low_power/tx_low_power.c \
+src/SUFST/Middlewares/rtcan/src/rtcan.c \
+src/SUFST/Middlewares/rtcan/src/rtcan_osal_threadx.c \
+src/SUFST/Middlewares/can-defs/out/can_t.c \
+src/SUFST/Middlewares/can-defs/out/can_s.c \
+src/Core/Src/sdmmc.c \
+src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_ll_sdmmc.c \
+src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_sd.c \
+src/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_mmc.c \
+src/Middlewares/ST/filex/common/drivers/fx_stm32_sd_driver.c \
+src/FileX/Target/fx_stm32_sd_driver_glue.c \
+src/FileX/App/app_filex.c \
+src/Middlewares/ST/filex/common/src/fx_directory_attributes_read.c \
+src/Middlewares/ST/filex/common/src/fx_directory_attributes_set.c \
+src/Middlewares/ST/filex/common/src/fx_directory_create.c \
+src/Middlewares/ST/filex/common/src/fx_directory_default_get.c \
+src/Middlewares/ST/filex/common/src/fx_directory_default_get_copy.c \
+src/Middlewares/ST/filex/common/src/fx_directory_default_set.c \
+src/Middlewares/ST/filex/common/src/fx_directory_delete.c \
+src/Middlewares/ST/filex/common/src/fx_directory_entry_read.c \
+src/Middlewares/ST/filex/common/src/fx_directory_entry_write.c \
+src/Middlewares/ST/filex/common/src/fx_directory_exFAT_entry_read.c \
+src/Middlewares/ST/filex/common/src/fx_directory_exFAT_entry_write.c \
+src/Middlewares/ST/filex/common/src/fx_directory_exFAT_free_search.c \
+src/Middlewares/ST/filex/common/src/fx_directory_exFAT_unicode_entry_write.c \
+src/Middlewares/ST/filex/common/src/fx_directory_first_entry_find.c \
+src/Middlewares/ST/filex/common/src/fx_directory_first_full_entry_find.c \
+src/Middlewares/ST/filex/common/src/fx_directory_free_search.c \
+src/Middlewares/ST/filex/common/src/fx_directory_information_get.c \
+src/Middlewares/ST/filex/common/src/fx_directory_local_path_clear.c \
+src/Middlewares/ST/filex/common/src/fx_directory_local_path_get.c \
+src/Middlewares/ST/filex/common/src/fx_directory_local_path_get_copy.c \
+src/Middlewares/ST/filex/common/src/fx_directory_local_path_restore.c \
+src/Middlewares/ST/filex/common/src/fx_directory_local_path_set.c \
+src/Middlewares/ST/filex/common/src/fx_directory_long_name_get.c \
+src/Middlewares/ST/filex/common/src/fx_directory_long_name_get_extended.c \
+src/Middlewares/ST/filex/common/src/fx_directory_name_extract.c \
+src/Middlewares/ST/filex/common/src/fx_directory_name_test.c \
+src/Middlewares/ST/filex/common/src/fx_directory_next_entry_find.c \
+src/Middlewares/ST/filex/common/src/fx_directory_next_full_entry_find.c \
+src/Middlewares/ST/filex/common/src/fx_directory_rename.c \
+src/Middlewares/ST/filex/common/src/fx_directory_search.c \
+src/Middlewares/ST/filex/common/src/fx_directory_short_name_get.c \
+src/Middlewares/ST/filex/common/src/fx_directory_short_name_get_extended.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_add_bitmap_log.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_add_checksum_log.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_add_dir_log.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_add_FAT_log.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_apply_logs.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_calculate_checksum.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_cleanup_FAT_chain.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_create_log_file.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_enable.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_read_directory_sector.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_read_FAT.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_read_log_file.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_recover.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_reset_log_file.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_set_FAT_chain.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_transaction_end.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_transaction_fail.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_transaction_start.c \
+src/Middlewares/ST/filex/common/src/fx_fault_tolerant_write_log_file.c \
+src/Middlewares/ST/filex/common/src/fx_file_allocate.c \
+src/Middlewares/ST/filex/common/src/fx_file_attributes_read.c \
+src/Middlewares/ST/filex/common/src/fx_file_attributes_set.c \
+src/Middlewares/ST/filex/common/src/fx_file_best_effort_allocate.c \
+src/Middlewares/ST/filex/common/src/fx_file_close.c \
+src/Middlewares/ST/filex/common/src/fx_file_create.c \
+src/Middlewares/ST/filex/common/src/fx_file_date_time_set.c \
+src/Middlewares/ST/filex/common/src/fx_file_delete.c \
+src/Middlewares/ST/filex/common/src/fx_file_extended_allocate.c \
+src/Middlewares/ST/filex/common/src/fx_file_extended_best_effort_allocate.c \
+src/Middlewares/ST/filex/common/src/fx_file_extended_relative_seek.c \
+src/Middlewares/ST/filex/common/src/fx_file_extended_seek.c \
+src/Middlewares/ST/filex/common/src/fx_file_extended_truncate.c \
+src/Middlewares/ST/filex/common/src/fx_file_extended_truncate_release.c \
+src/Middlewares/ST/filex/common/src/fx_file_open.c \
+src/Middlewares/ST/filex/common/src/fx_file_read.c \
+src/Middlewares/ST/filex/common/src/fx_file_relative_seek.c \
+src/Middlewares/ST/filex/common/src/fx_file_rename.c \
+src/Middlewares/ST/filex/common/src/fx_file_seek.c \
+src/Middlewares/ST/filex/common/src/fx_file_truncate.c \
+src/Middlewares/ST/filex/common/src/fx_file_truncate_release.c \
+src/Middlewares/ST/filex/common/src/fx_file_write.c \
+src/Middlewares/ST/filex/common/src/fx_file_write_notify_set.c \
+src/Middlewares/ST/filex/common/src/fx_media_abort.c \
+src/Middlewares/ST/filex/common/src/fx_media_boot_info_extract.c \
+src/Middlewares/ST/filex/common/src/fx_media_cache_invalidate.c \
+src/Middlewares/ST/filex/common/src/fx_media_check.c \
+src/Middlewares/ST/filex/common/src/fx_media_check_FAT_chain_check.c \
+src/Middlewares/ST/filex/common/src/fx_media_check_lost_cluster_check.c \
+src/Middlewares/ST/filex/common/src/fx_media_close.c \
+src/Middlewares/ST/filex/common/src/fx_media_close_notify_set.c \
+src/Middlewares/ST/filex/common/src/fx_media_exFAT_format.c \
+src/Middlewares/ST/filex/common/src/fx_media_extended_space_available.c \
+src/Middlewares/ST/filex/common/src/fx_media_flush.c \
+src/Middlewares/ST/filex/common/src/fx_media_format.c \
+src/Middlewares/ST/filex/common/src/fx_media_format_oem_name_set.c \
+src/Middlewares/ST/filex/common/src/fx_media_format_type_set.c \
+src/Middlewares/ST/filex/common/src/fx_media_format_volume_id_set.c \
+src/Middlewares/ST/filex/common/src/fx_media_open.c \
+src/Middlewares/ST/filex/common/src/fx_media_open_notify_set.c \
+src/Middlewares/ST/filex/common/src/fx_media_read.c \
+src/Middlewares/ST/filex/common/src/fx_media_space_available.c \
+src/Middlewares/ST/filex/common/src/fx_media_volume_get.c \
+src/Middlewares/ST/filex/common/src/fx_media_volume_get_extended.c \
+src/Middlewares/ST/filex/common/src/fx_media_volume_set.c \
+src/Middlewares/ST/filex/common/src/fx_media_write.c \
+src/Middlewares/ST/filex/common/src/fx_partition_offset_calculate.c \
+src/Middlewares/ST/filex/common/src/fx_system_date_get.c \
+src/Middlewares/ST/filex/common/src/fx_system_date_set.c \
+src/Middlewares/ST/filex/common/src/fx_system_initialize.c \
+src/Middlewares/ST/filex/common/src/fx_system_time_get.c \
+src/Middlewares/ST/filex/common/src/fx_system_time_set.c \
+src/Middlewares/ST/filex/common/src/fx_system_timer_entry.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_directory_create.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_directory_entry_change.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_directory_entry_read.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_directory_rename.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_directory_search.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_file_create.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_file_rename.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_length_get.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_length_get_extended.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_name_get.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_name_get_extended.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_short_name_get.c \
+src/Middlewares/ST/filex/common/src/fx_unicode_short_name_get_extended.c \
+src/Middlewares/ST/filex/common/src/fx_utility_16_unsigned_read.c \
+src/Middlewares/ST/filex/common/src/fx_utility_16_unsigned_write.c \
+src/Middlewares/ST/filex/common/src/fx_utility_32_unsigned_read.c \
+src/Middlewares/ST/filex/common/src/fx_utility_32_unsigned_write.c \
+src/Middlewares/ST/filex/common/src/fx_utility_64_unsigned_read.c \
+src/Middlewares/ST/filex/common/src/fx_utility_64_unsigned_write.c \
+src/Middlewares/ST/filex/common/src/fx_utility_absolute_path_get.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_allocate_new_cluster.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_bitmap_cache_prepare.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_bitmap_cache_update.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_bitmap_flush.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_bitmap_free_cluster_find.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_bitmap_initialize.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_bitmap_start_sector_get.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_cluster_free.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_cluster_state_get.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_cluster_state_set.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_geometry_check.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_name_hash_get.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_size_calculate.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_system_area_checksum_verify.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_system_area_checksum_write.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_system_area_format.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_system_sector_write.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_unicode_name_hash_get.c \
+src/Middlewares/ST/filex/common/src/fx_utility_exFAT_upcase_table.c \
+src/Middlewares/ST/filex/common/src/fx_utility_FAT_entry_read.c \
+src/Middlewares/ST/filex/common/src/fx_utility_FAT_entry_write.c \
+src/Middlewares/ST/filex/common/src/fx_utility_FAT_flush.c \
+src/Middlewares/ST/filex/common/src/fx_utility_FAT_map_flush.c \
+src/Middlewares/ST/filex/common/src/fx_utility_FAT_sector_get.c \
+src/Middlewares/ST/filex/common/src/fx_utility_logical_sector_cache_entry_read.c \
+src/Middlewares/ST/filex/common/src/fx_utility_logical_sector_flush.c \
+src/Middlewares/ST/filex/common/src/fx_utility_logical_sector_read.c \
+src/Middlewares/ST/filex/common/src/fx_utility_logical_sector_write.c \
+src/Middlewares/ST/filex/common/src/fx_utility_memory_copy.c \
+src/Middlewares/ST/filex/common/src/fx_utility_memory_set.c \
+src/Middlewares/ST/filex/common/src/fx_utility_string_length_get.c \
+src/Middlewares/ST/filex/common/src/fx_utility_token_length_get.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_attributes_read.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_attributes_set.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_create.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_default_get.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_default_get_copy.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_default_set.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_delete.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_first_entry_find.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_first_full_entry_find.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_information_get.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_local_path_clear.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_local_path_get.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_local_path_get_copy.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_local_path_restore.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_local_path_set.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_long_name_get.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_long_name_get_extended.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_name_test.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_next_entry_find.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_next_full_entry_find.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_rename.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_short_name_get.c \
+src/Middlewares/ST/filex/common/src/fxe_directory_short_name_get_extended.c \
+src/Middlewares/ST/filex/common/src/fxe_fault_tolerant_enable.c \
+src/Middlewares/ST/filex/common/src/fxe_file_allocate.c \
+src/Middlewares/ST/filex/common/src/fxe_file_attributes_read.c \
+src/Middlewares/ST/filex/common/src/fxe_file_attributes_set.c \
+src/Middlewares/ST/filex/common/src/fxe_file_best_effort_allocate.c \
+src/Middlewares/ST/filex/common/src/fxe_file_close.c \
+src/Middlewares/ST/filex/common/src/fxe_file_create.c \
+src/Middlewares/ST/filex/common/src/fxe_file_date_time_set.c \
+src/Middlewares/ST/filex/common/src/fxe_file_delete.c \
+src/Middlewares/ST/filex/common/src/fxe_file_extended_allocate.c \
+src/Middlewares/ST/filex/common/src/fxe_file_extended_best_effort_allocate.c \
+src/Middlewares/ST/filex/common/src/fxe_file_extended_relative_seek.c \
+src/Middlewares/ST/filex/common/src/fxe_file_extended_seek.c \
+src/Middlewares/ST/filex/common/src/fxe_file_extended_truncate.c \
+src/Middlewares/ST/filex/common/src/fxe_file_extended_truncate_release.c \
+src/Middlewares/ST/filex/common/src/fxe_file_open.c \
+src/Middlewares/ST/filex/common/src/fxe_file_read.c \
+src/Middlewares/ST/filex/common/src/fxe_file_relative_seek.c \
+src/Middlewares/ST/filex/common/src/fxe_file_rename.c \
+src/Middlewares/ST/filex/common/src/fxe_file_seek.c \
+src/Middlewares/ST/filex/common/src/fxe_file_truncate.c \
+src/Middlewares/ST/filex/common/src/fxe_file_truncate_release.c \
+src/Middlewares/ST/filex/common/src/fxe_file_write.c \
+src/Middlewares/ST/filex/common/src/fxe_file_write_notify_set.c \
+src/Middlewares/ST/filex/common/src/fxe_media_abort.c \
+src/Middlewares/ST/filex/common/src/fxe_media_cache_invalidate.c \
+src/Middlewares/ST/filex/common/src/fxe_media_check.c \
+src/Middlewares/ST/filex/common/src/fxe_media_close.c \
+src/Middlewares/ST/filex/common/src/fxe_media_close_notify_set.c \
+src/Middlewares/ST/filex/common/src/fxe_media_exFAT_format.c \
+src/Middlewares/ST/filex/common/src/fxe_media_extended_space_available.c \
+src/Middlewares/ST/filex/common/src/fxe_media_flush.c \
+src/Middlewares/ST/filex/common/src/fxe_media_format.c \
+src/Middlewares/ST/filex/common/src/fxe_media_open.c \
+src/Middlewares/ST/filex/common/src/fxe_media_open_notify_set.c \
+src/Middlewares/ST/filex/common/src/fxe_media_read.c \
+src/Middlewares/ST/filex/common/src/fxe_media_space_available.c \
+src/Middlewares/ST/filex/common/src/fxe_media_volume_get.c \
+src/Middlewares/ST/filex/common/src/fxe_media_volume_get_extended.c \
+src/Middlewares/ST/filex/common/src/fxe_media_volume_set.c \
+src/Middlewares/ST/filex/common/src/fxe_media_write.c \
+src/Middlewares/ST/filex/common/src/fxe_system_date_get.c \
+src/Middlewares/ST/filex/common/src/fxe_system_date_set.c \
+src/Middlewares/ST/filex/common/src/fxe_system_time_get.c \
+src/Middlewares/ST/filex/common/src/fxe_system_time_set.c \
+src/Middlewares/ST/filex/common/src/fxe_unicode_directory_create.c \
+src/Middlewares/ST/filex/common/src/fxe_unicode_directory_rename.c \
+src/Middlewares/ST/filex/common/src/fxe_unicode_file_create.c \
+src/Middlewares/ST/filex/common/src/fxe_unicode_file_rename.c \
+src/Middlewares/ST/filex/common/src/fxe_unicode_name_get.c \
+src/Middlewares/ST/filex/common/src/fxe_unicode_name_get_extended.c \
+src/Middlewares/ST/filex/common/src/fxe_unicode_short_name_get.c \
+src/Middlewares/ST/filex/common/src/fxe_unicode_short_name_get_extended.c \
+src/Core/Src/dma.c
ASM_SOURCES = \
src/startup_stm32f746xx.s \
src/Core/Src/tx_initialize_low_level.s \
-src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_context_restore.s \
-src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_context_save.s \
-src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_interrupt_control.s \
-src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_schedule.s \
-src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_stack_build.s \
-src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_system_return.s \
-src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_timer_interrupt.s
+src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_context_restore.S \
+src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_context_save.S \
+src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_interrupt_control.S \
+src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_schedule.S \
+src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_stack_build.S \
+src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_thread_system_return.S \
+src/Middlewares/ST/threadx/ports/cortex_m7/gnu/src/tx_timer_interrupt.S
###############################################################################
# includes
###############################################################################
C_INCLUDES = \
--Isrc/Core/Inc \
-Isrc/SUFST/Inc \
+-Isrc/Core/Inc \
-Isrc/SUFST/Inc/Functions \
-Isrc/SUFST/Inc/Interfaces \
-Isrc/SUFST/Inc/Services \
@@ -345,8 +797,19 @@ C_INCLUDES = \
-Isrc/AZURE_RTOS/App \
-Isrc/Middlewares/ST/threadx/common/inc/ \
-Isrc/Middlewares/ST/threadx/ports/cortex_m7/gnu/inc/ \
--Isrc/Middlewares/SUFST/rtcan/inc/ \
--Isrc/Middlewares/SUFST/can-defs/out/
+-Isrc/Middlewares/ST/threadx/utility/low_power/ \
+-Isrc/SUFST/Middlewares/rtcan/inc/ \
+-Isrc/SUFST/Middlewares/can-defs/out/ \
+-Isrc/FileX/App \
+-Isrc/FileX/Target \
+-Isrc/Middlewares/ST/filex/common/inc \
+-Isrc/Middlewares/ST/filex/ports/generic/inc \
+-Isrc/USBX/App \
+-Isrc/USBX/Target \
+-Isrc/Middlewares/ST/usbx/common/usbx_device_classes/inc/ \
+-Isrc/Middlewares/ST/usbx/common/core/inc/ \
+-Isrc/Middlewares/ST/usbx/ports/generic/inc/ \
+-Isrc/Middlewares/ST/usbx/common/usbx_stm32_device_controllers/
ASM_INCLUDES =
@@ -357,9 +820,11 @@ ASM_INCLUDES =
ifeq ($(DEBUG), 1)
C_DEFS = $(ALWAYS_C_DEFS) $(DEBUG_C_DEFS)
ASM_DEFS = $(DEBUG_ASM_DEFS)
+ BUILD_DIR = build/debug
else
C_DEFS = $(ALWAYS_C_DEFS) $(RELEASE_C_DEFS)
ASM_DEFS = $(RELEASE_ASM_DEFS)
+ BUILD_DIR = build/release
endif
###############################################################################
@@ -413,11 +878,11 @@ $(BUILD_DIR)/%.o: %.c Makefile | $(BUILD_DIR) prebuild
$(CC) -c $(CFLAGS) -Wa,-a,-ad,-alms=$(BUILD_DIR)/$(notdir $(<:.c=.lst)) $< -o $@
# ASM
-$(BUILD_DIR)/%.o: %.s Makefile | $(BUILD_DIR) prebuild
+$(BUILD_DIR)/%.o: %.S Makefile | $(BUILD_DIR) prebuild
echo "$<"
$(AS) -c $(CFLAGS) $< -o $@
-$(BUILD_DIR)/%.o: %.S Makefile | $(BUILD_DIR) prebuild
+$(BUILD_DIR)/%.o: %.s Makefile | $(BUILD_DIR) prebuild
echo "$<"
$(AS) -c $(CFLAGS) $< -o $@
@@ -445,13 +910,13 @@ $(BUILD_DIR):
# clean
clean:
tput setaf 5; tput bold; echo "Cleaning build directory..."; tput sgr0
- -rm -fR $(BUILD_DIR)
+ -rm -fR build
tput setaf 2; echo "Done"; tput sgr0
# flash
flash: $(BUILD_DIR)/$(TARGET).bin
tput setaf 5; tput bold; echo "Flashing..."; tput sgr0
- st-flash write $< 0x08000000
+ st-flash --reset write $< 0x08000000
# generate compile commands database
ccd:
@@ -459,6 +924,13 @@ ccd:
${PYTHON} -m ccdgen --extensions .c .s .S --compiler arm-none-eabi-gcc -- ${MAKE}
tput sgr0; tput setaf 2; echo "Done"; tput sgr0
+# format source code
+.PHONY: format
+format:
+ tput setaf 5; tput bold; echo "Formatting source code..."; tput sgr0
+ find src/SUFST/Src src/SUFST/Inc \( -iname '*.c' -o -iname '*.h' \) -print0 | xargs -0 clang-format -i
+ tput setaf 2; echo "Done"; tput sgr0
+
###############################################################################
# dependencies
###############################################################################
diff --git a/README.md b/README.md
index 892959b1..884192b2 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
# Table of Contents
- [About](#about)
-- [Development Environment](#development-environment)
+- [Development Environment](#setup--development-environment)
- [Contributing](#contributing)
- [Useful Resources](#useful-resources)
- [Related Projects](#related-projects)
@@ -20,10 +20,10 @@ SUFST Docs Site.
## Using the setup script
+Run the below command once to install dependencies, clone the repository and initialise submodules
+
```sh
-curl https://raw.githubusercontent.com/sufst/vcu/refs/heads/main/vcu-setup-script.sh -o vcu-setup-script.sh
-chmod +x vcu-setup-script.sh
-./vcu-setup-script.sh
+curl -LsSf https://raw.githubusercontent.com/sufst/vcu/refs/heads/stag-12/vcu-setup-script.sh | bash
```
## Submodules
diff --git a/scripts/canoe/ProjectSettings.vtesettings b/scripts/canoe/ProjectSettings.vtesettings
new file mode 100644
index 00000000..985f8784
--- /dev/null
+++ b/scripts/canoe/ProjectSettings.vtesettings
@@ -0,0 +1,262 @@
+
+
+
+
+
+ f4097ce8-e7fc-4dfe-bc1c-2a3f647af0b2
+
+
+
+
+ Vector.SymbolSelection.Controls.SymbolSelectionControl
+ 4
+ Vector.SymbolSelection, Version=3.8.12.0, Culture=neutral, PublicKeyToken=null
+
+ <?xml version="1.0" encoding="utf-8"?>
+<SymbolSelectionProperties xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
+<AreDiagQualifiersShown>true</AreDiagQualifiersShown>
+<CurrentViewId>None</CurrentViewId>
+<SearchProperties>
+<SearchTermHistory />
+</SearchProperties>
+<ViewProperties>
+<ViewProperties>
+<ColumnsProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>0</Position>
+<Sorting>Ascending</Sorting>
+<Width>200</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>2</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>3</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>4</Position>
+<Width>200</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>5</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+</ColumnsProperties>
+<Key>Embedded/NetworkSymbols</Key>
+<NodeTreeProperties />
+</ViewProperties>
+</ViewProperties>
+</SymbolSelectionProperties>
+
+
+
+ Vector.SymbolSelection.Controls.SymbolSelectionDialog
+ 4
+ Vector.SymbolSelection, Version=3.8.12.0, Culture=neutral, PublicKeyToken=null
+
+
+
+
+
+
+
+ 73bcea0e-9abf-4359-b300-0186fd754011
+
+
+
+
+ Vector.SymbolSelection.Controls.SymbolSelectionControl
+ 4
+ Vector.SymbolSelection, Version=3.8.12.0, Culture=neutral, PublicKeyToken=null
+
+ <?xml version="1.0" encoding="utf-8"?>
+<SymbolSelectionProperties xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
+<AreDiagQualifiersShown>true</AreDiagQualifiersShown>
+<CurrentViewId>None</CurrentViewId>
+<SearchProperties>
+<SearchTermHistory />
+</SearchProperties>
+<ViewProperties>
+<ViewProperties>
+<ColumnsProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>0</Position>
+<Sorting>Ascending</Sorting>
+<Width>200</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>2</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>3</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<IsVisible>true</IsVisible>
+<Position>4</Position>
+<Width>200</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+<ColumnProperties>
+<Position>-1</Position>
+<Width>100</Width>
+</ColumnProperties>
+</ColumnsProperties>
+<Key>Embedded/NetworkSymbols</Key>
+<NodeTreeProperties />
+</ViewProperties>
+</ViewProperties>
+</SymbolSelectionProperties>
+
+
+
+ Vector.SymbolSelection.Controls.SymbolSelectionDialog
+ 4
+ Vector.SymbolSelection, Version=3.8.12.0, Culture=neutral, PublicKeyToken=null
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/scripts/canoe/Stag_12.cfg b/scripts/canoe/Stag_12.cfg
new file mode 100644
index 00000000..1635e2e3
--- /dev/null
+++ b/scripts/canoe/Stag_12.cfg
@@ -0,0 +1,111999 @@
+;CANoe Version |4|19|0|56757 Stag_12
+Version: 19.5.44 Build 44
+32 PRO
+10
+APPDIR Vector.CANalyzer.CAN.InteractiveGenerator.DLL
+Vector.CANalyzer.CAN.InteractiveGenerator, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.InteractiveGenerator.Controller.CANwinCommunicator
+1
+1.0.0
+APPDIR Vector.CANoe.SignalGenerators.DLL
+Vector.CANoe.SignalGenerators, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANoe.SignalGenerators.ComponentWrapper
+2
+1.0.1
+VGlobalConfiguration 1 Begin_Of_Object
+19
+VGlobalParameters 2 Begin_Of_Object
+43
+2
+3,100,200,500
+1000000 1.000000 0 1000 1 1 0 0 1 1 1 0 0 0 1 0 0 0
+1
+0
+1 1
+ResetSignalsOnMeasurementStart=1
+VDatabaseContainerStreamer 3 Begin_Of_Object
+10
+2
+ 1 "..\..\..\can-defs\dbc\CAN-T.dbc"
+CANT
+
+1
+0
+1
+000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001
+
+ 1 "..\..\..\can-defs\dbc\CAN-S.dbc"
+CANS
+
+1
+1
+1
+000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010
+
+1
+0
+0
+0
+0
+0
+0
+0
+0
+End_Of_Object VDatabaseContainerStreamer 3
+0
+0
+1
+ 1 "Stag_12.cfg"
+0
+0
+0
+0
+VPersistentEnvarSelectionData 3 Begin_Of_Object
+1
+1 1 0 0
+~
+~
+End_Of_Object VPersistentEnvarSelectionData 3
+VPersistentExtensionData 3 Begin_Of_Object
+3
+VPersistentRelation 4 Begin_Of_Object
+1
+HookDLLActivations
+1
+1
+End_Of_Object VPersistentRelation 4
+End_Of_Object VPersistentExtensionData 3
+VPersistentTreeStateInfo 3 Begin_Of_Object
+1
+Version
+5
+DialogBegin
+1
+75 75 605 580
+SymbolExplorerDialogBegin
+1
+HistoryBegin
+1 0
+HistoryEnd
+FiltersBegin
+Begin
+3 0 -1
+0
+SymbSelHeaderMgrBegin
+1 6
+0 1 200 0 0
+1 1 100 0 0
+2 0 100 0 0
+3 0 75 1 1
+5 1 80 0 0
+6 1 200 0 0
+15 1 80 0 0
+SymbSelHeaderMgrEnd
+End
+Begin
+3 0 -1
+-1
+SymbSelHeaderMgrBegin
+1 4
+0 1 200 0 0
+10 1 75 0 0
+11 1 100 0 0
+6 1 200 0 0
+SymbSelHeaderMgrEnd
+End
+Begin
+3 0 -1
+-1
+SymbSelHeaderMgrBegin
+1 3
+0 1 200 0 0
+7 0 100 0 0
+6 1 200 0 0
+SymbSelHeaderMgrEnd
+End
+
+FiltersEnd
+0 0
+SymbolExplorerDialogEnd
+
+DialogEnd
+End_Of_Object VPersistentTreeStateInfo 3
+VPrintSettings 3 Begin_Of_Object
+1
+0 0 0 0 0
+End_Of_Object VPrintSettings 3
+ 1 "C:\Users\Public\Documents\Vector\CANoe\Public\Documents\Vector\CANwin\8.0.71\CANwin Demos\templates\portlink1.pre"
+1
+VPortlinkConfigurationStreamer 3 Begin_Of_Object
+1
+1
+0
+0
+0
+END_OF_DRIVER
+END_OF_PORT_CONFIGURATION_STREAM
+End_Of_Object VPortlinkConfigurationStreamer 3
+0
+0
+0
+0
+ V2 275
+ 6
+ V2 20 1 -1 36
+ V2 1 1 -1 47
+ V2 0 1 -1 40
+ V2 2 1 -1 47
+ V2 4 1 -1 33
+ V2 5 3 0 24 1 24 2 24
+ 4
+1 0 1
+ V2 6 2 0 36 1 36
+1 1 4
+ V2 7 1 -1 45
+ V2 8 1 -1 30
+ V2 9 1 -1 30
+ V2 6 2 0 24 1 32
+1 2 4
+ V2 19 1 -1 45
+ V2 8 1 -1 30
+ V2 22 1 -1 30
+ V2 6 2 0 24 1 32
+8 0 5
+ V2 7 1 -1 47
+ V2 8 1 -1 30
+ V2 11 3 0 30 1 30 3 30
+ V2 17 3 0 20 1 20 2 20
+ V2 18 6 0 26 1 33 2 26 3 26 4 20 5 40
+EndOf
+VGlobalActionsStreamer 3 Begin_Of_Object
+3
+3
+0
+End_Of_Object VGlobalActionsStreamer 3
+VEventSortingConfigStreamer 3 Begin_Of_Object
+1
+0
+0
+0
+1
+1
+1
+0
+End_Of_Object VEventSortingConfigStreamer 3
+FlexRayOptionParameters: 2 0 1 0 1 1 :0 :
+FlexRayOptionParametersEnd
+VCaplOptionsStreamer 3 Begin_Of_Object
+2
+26
+1177
+1
+1448
+0
+2001
+1
+2002
+0
+2005
+0
+2008
+1
+2013
+1
+2020
+1
+2032
+1
+2038
+1
+2039
+0
+2040
+1
+2041
+1
+2054
+0
+2055
+1
+2056
+1
+2065
+0
+2071
+0
+2072
+0
+2075
+1
+2078
+1
+2085
+1
+2086
+1
+2087
+1
+2135
+1
+2201
+0
+1
+512
+End_Of_Object VCaplOptionsStreamer 3
+VSVConfigurationStreamer 3 Begin_Of_Object
+1
+2374
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+2
+0
+End_Of_Object VSVConfigurationStreamer 3
+VOfflineBusStatisticSettings 3 Begin_Of_Object
+1
+1
+1
+1 1
+1 500000
+1 2
+1 1000000
+0 3
+1 0
+0 4
+1 0
+0 5
+1 0
+0 6
+1 0
+0 7
+1 0
+0 8
+1 0
+0 9
+1 0
+0 10
+1 0
+0 11
+1 0
+0 12
+1 0
+0 13
+1 0
+0 14
+1 0
+0 15
+1 0
+0 16
+1 0
+0 17
+1 0
+0 18
+1 0
+0 19
+1 0
+0 20
+1 0
+0 21
+1 0
+0 22
+1 0
+0 23
+1 0
+0 24
+1 0
+0 25
+1 0
+0 26
+1 0
+0 27
+1 0
+0 28
+1 0
+0 29
+1 0
+0 30
+1 0
+0 31
+1 0
+0 32
+1 0
+0 33
+1 0
+0 34
+1 0
+0 35
+1 0
+0 36
+1 0
+0 37
+1 0
+0 38
+1 0
+0 39
+1 0
+0 40
+1 0
+0 41
+1 0
+0 42
+1 0
+0 43
+1 0
+0 44
+1 0
+0 45
+1 0
+0 46
+1 0
+0 47
+1 0
+0 48
+1 0
+0 49
+1 0
+0 50
+1 0
+0 51
+1 0
+0 52
+1 0
+0 53
+1 0
+0 54
+1 0
+0 55
+1 0
+0 56
+1 0
+0 57
+1 0
+0 58
+1 0
+0 59
+1 0
+0 60
+1 0
+0 61
+1 0
+0 62
+1 0
+0 63
+1 0
+0 64
+1 0
+0 65
+1 0
+0 66
+1 0
+0 67
+1 0
+0 68
+1 0
+0 69
+1 0
+0 70
+1 0
+0 71
+1 0
+0 72
+1 0
+0 73
+1 0
+0 74
+1 0
+0 75
+1 0
+0 76
+1 0
+0 77
+1 0
+0 78
+1 0
+0 79
+1 0
+0 80
+1 0
+0 81
+1 0
+0 82
+1 0
+0 83
+1 0
+0 84
+1 0
+0 85
+1 0
+0 86
+1 0
+0 87
+1 0
+0 88
+1 0
+0 89
+1 0
+0 90
+1 0
+0 91
+1 0
+0 92
+1 0
+0 93
+1 0
+0 94
+1 0
+0 95
+1 0
+0 96
+1 0
+0 97
+1 0
+0 98
+1 0
+0 99
+1 0
+0 100
+1 0
+0 101
+1 0
+0 102
+1 0
+0 103
+1 0
+0 104
+1 0
+0 105
+1 0
+0 106
+1 0
+0 107
+1 0
+0 108
+1 0
+0 109
+1 0
+0 110
+1 0
+0 111
+1 0
+0 112
+1 0
+0 113
+1 0
+0 114
+1 0
+0 115
+1 0
+0 116
+1 0
+0 117
+1 0
+0 118
+1 0
+0 119
+1 0
+0 120
+1 0
+0 121
+1 0
+0 122
+1 0
+0 123
+1 0
+0 124
+1 0
+0 125
+1 0
+0 126
+1 0
+0 127
+1 0
+0 128
+1 0
+0 129
+1 0
+0 130
+1 0
+0 131
+1 0
+0 132
+1 0
+0 133
+1 0
+0 134
+1 0
+0 135
+1 0
+0 136
+1 0
+0 137
+1 0
+0 138
+1 0
+0 139
+1 0
+0 140
+1 0
+0 141
+1 0
+0 142
+1 0
+0 143
+1 0
+0 144
+1 0
+0 145
+1 0
+0 146
+1 0
+0 147
+1 0
+0 148
+1 0
+0 149
+1 0
+0 150
+1 0
+0 151
+1 0
+0 152
+1 0
+0 153
+1 0
+0 154
+1 0
+0 155
+1 0
+0 156
+1 0
+0 157
+1 0
+0 158
+1 0
+0 159
+1 0
+0 160
+1 0
+0 161
+1 0
+0 162
+1 0
+0 163
+1 0
+0 164
+1 0
+0 165
+1 0
+0 166
+1 0
+0 167
+1 0
+0 168
+1 0
+0 169
+1 0
+0 170
+1 0
+0 171
+1 0
+0 172
+1 0
+0 173
+1 0
+0 174
+1 0
+0 175
+1 0
+0 176
+1 0
+0 177
+1 0
+0 178
+1 0
+0 179
+1 0
+0 180
+1 0
+0 181
+1 0
+0 182
+1 0
+0 183
+1 0
+0 184
+1 0
+0 185
+1 0
+0 186
+1 0
+0 187
+1 0
+0 188
+1 0
+0 189
+1 0
+0 190
+1 0
+0 191
+1 0
+0 192
+1 0
+0 193
+1 0
+0 194
+1 0
+0 195
+1 0
+0 196
+1 0
+0 197
+1 0
+0 198
+1 0
+0 199
+1 0
+0 200
+1 0
+0 201
+1 0
+0 202
+1 0
+0 203
+1 0
+0 204
+1 0
+0 205
+1 0
+0 206
+1 0
+0 207
+1 0
+0 208
+1 0
+0 209
+1 0
+0 210
+1 0
+0 211
+1 0
+0 212
+1 0
+0 213
+1 0
+0 214
+1 0
+0 215
+1 0
+0 216
+1 0
+0 217
+1 0
+0 218
+1 0
+0 219
+1 0
+0 220
+1 0
+0 221
+1 0
+0 222
+1 0
+0 223
+1 0
+0 224
+1 0
+0 225
+1 0
+0 226
+1 0
+0 227
+1 0
+0 228
+1 0
+0 229
+1 0
+0 230
+1 0
+0 231
+1 0
+0 232
+1 0
+0 233
+1 0
+0 234
+1 0
+0 235
+1 0
+0 236
+1 0
+0 237
+1 0
+0 238
+1 0
+0 239
+1 0
+0 240
+1 0
+0 241
+1 0
+0 242
+1 0
+0 243
+1 0
+0 244
+1 0
+0 245
+1 0
+0 246
+1 0
+0 247
+1 0
+0 248
+1 0
+0 249
+1 0
+0 250
+1 0
+0 251
+1 0
+0 252
+1 0
+0 253
+1 0
+0 254
+1 0
+0 255
+1 0
+End_Of_Object VOfflineBusStatisticSettings 3
+VNETOptionsStreamer 3 Begin_Of_Object
+5
+0
+ 0 ""
+1
+
+0
+0
+End_Of_Object VNETOptionsStreamer 3
+0
+1
+VUserFileMgrAnlyz 3 Begin_Of_Object
+2
+0
+0
+End_Of_Object VUserFileMgrAnlyz 3
+VCLibraryOptions 3 Begin_Of_Object
+1
+0
+End_Of_Object VCLibraryOptions 3
+NValueObjectDisplay::VNameDisplaySettings 3 Begin_Of_Object
+3
+12
+0
+4
+1
+4
+2
+4
+3
+4
+4
+1
+5
+1
+6
+4
+7
+4
+8
+4
+9
+6
+10
+4
+11
+4
+12
+0
+1
+1
+1
+2
+1
+3
+1
+4
+1
+5
+1
+6
+1
+7
+1
+8
+1
+9
+1
+10
+1
+11
+1
+12
+0
+0
+1
+0
+2
+0
+3
+0
+4
+0
+5
+0
+6
+0
+7
+0
+8
+0
+9
+0
+10
+0
+11
+0
+0
+1
+9
+128
+0
+End_Of_Object NValueObjectDisplay::VNameDisplaySettings 3
+ConfigurationSavedByCANwBeginner 0
+VGlobalExportAndLoggingSettings 3 Begin_Of_Object
+10
+2
+1
+0
+0
+6
+1
+0.10000000000000001
+2
+0
+0.10000000000000001
+2
+19
+0
+1
+3
+1
+0
+::
+,
+.
+ 1 ""
+0
+0
+0
+1
+6
+0
+6
+0
+0
+0.10000000000000001
+1
+0
+0
+6
+730
+0
+0.10000000000000001
+0
+0
+-1
+VLoggingComment 4 Begin_Of_Object
+1
+1
+VLoggingCommentAttribute 5 Begin_Of_Object
+1
+Comment
+
+1
+End_Of_Object VLoggingCommentAttribute 5
+End_Of_Object VLoggingComment 4
+1
+End_Of_Object VGlobalExportAndLoggingSettings 3
+0
+VRTFilterOptions 3 Begin_Of_Object
+3
+0
+0
+0
+0
+0
+End_Of_Object VRTFilterOptions 3
+VRTTxBufferOptions 3 Begin_Of_Object
+2
+1
+1
+500
+End_Of_Object VRTTxBufferOptions 3
+VRTIRQReductionOptions 3 Begin_Of_Object
+2
+500
+End_Of_Object VRTIRQReductionOptions 3
+VPersistentDebuggerOptions 3 Begin_Of_Object
+2
+64
+10000
+End_Of_Object VPersistentDebuggerOptions 3
+7
+0
+0
+0
+0
+1
+0
+0
+0
+1
+VAFDXGlobalSettings 3 Begin_Of_Object
+4
+1000
+15
+1
+0
+0
+0
+0
+End_Of_Object VAFDXGlobalSettings 3
+VRTCANErrorFrameOptions 3 Begin_Of_Object
+1
+1
+0
+End_Of_Object VRTCANErrorFrameOptions 3
+1
+ILConfiguration::VProxyManagerPersistentData 3 Begin_Of_Object
+1
+0
+0
+End_Of_Object ILConfiguration::VProxyManagerPersistentData 3
+8
+VGlobalVariableSettings 3 Begin_Of_Object
+1
+65001
+End_Of_Object VGlobalVariableSettings 3
+VGeneralLoggingBlockSettings 3 Begin_Of_Object
+3
+2000
+212
+0
+3
+1
+End_Of_Object VGeneralLoggingBlockSettings 3
+0
+0
+212
+0
+1
+SecurityManager::VSecurityManager 3 Begin_Of_Object
+6
+0
+0
+NULL
+0
+NULL
+0
+End_Of_Object SecurityManager::VSecurityManager 3
+VRTAutosarPDULayerMode 3 Begin_Of_Object
+1
+2
+End_Of_Object VRTAutosarPDULayerMode 3
+VErtOptions 3 Begin_Of_Object
+2
+0
+0
+End_Of_Object VErtOptions 3
+1
+0
+8
+VDistributedDebuggingSettings 3 Begin_Of_Object
+1
+0
+2828
+End_Of_Object VDistributedDebuggingSettings 3
+VAdditionalLicenseOptions 3 Begin_Of_Object
+1
+0
+End_Of_Object VAdditionalLicenseOptions 3
+10
+0
+VMultiCANoeOptions 3 Begin_Of_Object
+9
+0
+10000
+0
+0
+1
+0
+Agent#
+0
+127.0.0.1:2809
+2810
+
+1
+0
+0
+0
+0
+0
+0
+0
+End_Of_Object VMultiCANoeOptions 3
+0
+VPythonOptions 3 Begin_Of_Object
+2
+-1
+-1
+-1
+0
+
+End_Of_Object VPythonOptions 3
+1
+2
+0
+End_Of_Object VGlobalParameters 2
+VDesktopManagerPersistentData 2 Begin_Of_Object
+1
+1
+3
+VDesktop 3 Begin_Of_Object
+1
+Trace
+{9A300368-5C43-4C52-8A1F-83F68E1E0BCD}
+Begin_Of_Multi_Line_String
+3
+
+
+
+*
+
+
+0.636363636363636*
+{31FB7B33-3D93-4EE7-A007-8DB311A944A4}
+
+
+0.363636363636364*
+{31AD4644-E941-452D-832D-80EF52A05036}
+
+
+1
+
+
+End_Of_Serialized_Data 3
+End_Of_Object VDesktop 3
+VDesktop 3 Begin_Of_Object
+1
+Configuration
+{051F9568-8F91-4D13-B4A8-D82D98D021BA}
+Begin_Of_Multi_Line_String
+3
+
+
+
+*
+
+
+0.79610762800418*
+
+
+0.738853503184713*
+
+
+0.545948616600791*
+{859D5F30-8AA0-44F5-A116-746AD888DE4A}
+
+
+0.454051383399209*
+{E8FCB431-7366-42DA-A18A-A2422C1CD152}
+
+
+0
+
+
+0.261146496815287*
+{31AD4644-E941-452D-832D-80EF52A05036}
+
+
+1
+
+
+0.20389237199582*
+{31FB7B33-3D93-4EE7-A007-8DB311A944A4}
+
+
+0
+
+
+End_Of_Serialized_Data 3
+End_Of_Object VDesktop 3
+VDesktop 3 Begin_Of_Object
+1
+Analysis
+{CBE571D9-1968-4A46-89F5-A949CD457AA6}
+Begin_Of_Multi_Line_String
+3
+
+
+
+*
+
+
+0.454545454545455*
+
+
+0.454545454545455*
+{DF1D1FB8-3F6B-4B58-9502-C920BE0A79B0}
+
+
+0.545454545454545*
+{AA76F618-2087-4A48-B611-BF29871F1267}
+
+
+0
+
+
+0.545454545454545*
+{DDA24D23-CEC5-4F19-BC3F-BFC4A28BA823}
+
+
+1
+
+
+End_Of_Serialized_Data 3
+End_Of_Object VDesktop 3
+4294967295
+4294967295
+4294967295
+1
+End_Of_Object VDesktopManagerPersistentData 2
+0
+VGBAnlyzBox 2 Begin_Of_Object
+3
+VGrMnBox 3 Begin_Of_Object
+1
+VUniqueBox 4 Begin_Of_Object
+1
+VBoxRoot 5 Begin_Of_Object
+1
+3
+0 0 0 1 -1 -1 -1 -1 775 0 1275 588
+
+1
+
+MDI_DOCK_INFO_END
+5
+1
+7
+0 1 -1 -1 -1 -1 22 22 953 535
+0
+0
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+7
+0 1 0 0 0 0 835 0 1524 576
+1
+0
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+7
+0 1 -1 -1 -1 -1 22 22 953 535
+0
+0
+0
+0
+0
+0
+END_OF_DESKTOP_DATA
+END_OF_DESKTOP_DATA_COLLECTION
+0
+0 0
+END_OF_DESKTOP_MEMBER
+{E8FCB431-7366-42DA-A18A-A2422C1CD152}
+0
+End_Of_Object VBoxRoot 5
+0 0 0 0 0 0 0 0 0 0 0 0
+End_Of_Object VUniqueBox 4
+End_Of_Object VGrMnBox 3
+VDOLocalInfoStruct 3 Begin_Of_Object
+4
+1
+152
+VDAOGBFunctionBlock 4 Begin_Of_Object
+1
+1
+0
+TABPredecessor:
+0
+TABSuccessor:
+66
+VOfflineSrcConfiguration 5 Begin_Of_Object
+3
+VMigratedGenericConfiguration 6 Begin_Of_Object
+1
+VOfflineCfgData 7 Begin_Of_Object
+2
+VReplayCfgBase 8 Begin_Of_Object
+1
+13
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-0-10nm-oscillating.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-1-10nm-chain-issue.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-2-10nm-chain-issue-2.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-3-10nm-chain-issue-3.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-4,5,6-50nm_and_120nm-seemingly_stable.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-7-100nm-accu_bolts_fell_out.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-8-100nm-reach_oscillations.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-9.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-10.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-11.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-12.blf"
+ 1 "C:\Users\Martin\Downloads\July 13th 2026 Dyno\Vector Logs\run-13.blf"
+ 1 "C:\Users\Martin\Downloads\ACCUMULATOR PRE_FSG_TEMP_VOLTAGELogging.blf"
+1
+End_Of_Object VReplayCfgBase 8
+VCfgBreakCondition 8 Begin_Of_Object
+1
+VDataBreakCondition 9 Begin_Of_Object
+1
+0
+VEvCondBlock 10 Begin_Of_Object
+1
+VEvCondGroup 11 Begin_Of_Object
+2
+VEvCondPrimitive 12 Begin_Of_Object
+1
+1
+End_Of_Object VEvCondPrimitive 12
+1
+0
+0
+End_Of_Object VEvCondGroup 11
+End_Of_Object VEvCondBlock 10
+End_Of_Object VDataBreakCondition 9
+End_Of_Object VCfgBreakCondition 8
+0
+0
+0
+0
+0
+0
+End_Of_Object VOfflineCfgData 7
+End_Of_Object VMigratedGenericConfiguration 6
+VChannelMapping 6 Begin_Of_Object
+2
+0
+End_Of_Object VChannelMapping 6
+End_Of_Object VOfflineSrcConfiguration 5
+VDAOSwitch 5 Begin_Of_Object
+1
+66
+0
+TABPredecessor:
+1
+TABSuccessor:
+67
+VDAOGBHSStd 6 Begin_Of_Object
+1
+67
+0
+0 0
+TABPredecessor:
+66
+TABSuccessor:
+69
+VDODynamicLine 7 Begin_Of_Object
+1
+68
+0
+0
+VDAOGBFunctionBlock 8 Begin_Of_Object
+1
+69
+0
+TABPredecessor:
+67
+TABSuccessor:
+71
+VNetMSControlConfiguration 9 Begin_Of_Object
+1
+VNETControlConfiguration 10 Begin_Of_Object
+1
+VConfigurationRoot 11 Begin_Of_Object
+1
+End_Of_Object VConfigurationRoot 11
+VNETControlBox 11 Begin_Of_Object
+2
+VUniqueBox 12 Begin_Of_Object
+1
+VBoxRoot 13 Begin_Of_Object
+1
+2
+1 -1 0 1 0 0 0 0 315 162 1260 648
+CAN Filter
+1
+
+MDI_DOCK_INFO_END
+5
+1
+7
+0 1 0 0 -1 -1 315 162 1260 648
+0
+-1
+0
+0
+0
+0
+END_OF_DESKTOP_DATA
+7
+0 1 0 0 -1 -1 315 162 1260 648
+0
+-1
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+7
+0 1 0 0 -1 -1 315 162 1260 648
+0
+-1
+0
+0
+0
+0
+END_OF_DESKTOP_DATA
+END_OF_DESKTOP_DATA_COLLECTION
+0
+0 0
+END_OF_DESKTOP_MEMBER
+{2D404261-F100-423A-B483-5CBDA39C17AF}
+0
+End_Of_Object VBoxRoot 13
+0 0 0 0 0 0 0 0 0 0 0 0
+End_Of_Object VUniqueBox 12
+0
+0
+End_Of_Object VNETControlBox 11
+610
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.ApplicationProxy
+1
+1
+APPDIR NetApplicationServices.DLL
+NetApplicationServices, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.ApplicationSerializer
+2
+Application
+2
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.ComponentConfiguration
+3
+Configuration
+3
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.FrameFilterIdRange
+4
+Filter_0
+4
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.EventFilter
+5
+Filter_1
+5
+Int32
+FiltersCount
+2
+Int32
+Layout_FrameGrid_Enabled_VisibleIndex
+0
+String
+Layout_FrameGrid_Enabled_Visible
+1
+True
+Int32
+Layout_FrameGrid_Enabled_SortOrder
+0
+Int32
+Layout_FrameGrid_Enabled_SortIndex
+-1
+Int32
+Layout_FrameGrid_Enabled_GroupIndex
+-1
+Double
+Layout_FrameGrid_Enabled_Width
+60
+Int32
+Layout_FrameGrid_Name_VisibleIndex
+1
+String
+Layout_FrameGrid_Name_Visible
+1
+True
+Int32
+Layout_FrameGrid_Name_SortOrder
+1
+Int32
+Layout_FrameGrid_Name_SortIndex
+0
+Int32
+Layout_FrameGrid_Name_GroupIndex
+-1
+Double
+Layout_FrameGrid_Name_Width
+150
+Int32
+Layout_FrameGrid_IDText_VisibleIndex
+2
+String
+Layout_FrameGrid_IDText_Visible
+1
+True
+Int32
+Layout_FrameGrid_IDText_SortOrder
+0
+Int32
+Layout_FrameGrid_IDText_SortIndex
+-1
+Int32
+Layout_FrameGrid_IDText_GroupIndex
+-1
+Double
+Layout_FrameGrid_IDText_Width
+90
+Int32
+Layout_FrameGrid_SendNode_VisibleIndex
+3
+String
+Layout_FrameGrid_SendNode_Visible
+1
+True
+Int32
+Layout_FrameGrid_SendNode_SortOrder
+0
+Int32
+Layout_FrameGrid_SendNode_SortIndex
+-1
+Int32
+Layout_FrameGrid_SendNode_GroupIndex
+-1
+Double
+Layout_FrameGrid_SendNode_Width
+100
+Int32
+Layout_FrameGrid_ChannelText_VisibleIndex
+4
+String
+Layout_FrameGrid_ChannelText_Visible
+1
+True
+Int32
+Layout_FrameGrid_ChannelText_SortOrder
+0
+Int32
+Layout_FrameGrid_ChannelText_SortIndex
+-1
+Int32
+Layout_FrameGrid_ChannelText_GroupIndex
+-1
+Double
+Layout_FrameGrid_ChannelText_Width
+80
+Int32
+Layout_ECUFilterGrid_Enabled_VisibleIndex
+0
+String
+Layout_ECUFilterGrid_Enabled_Visible
+1
+True
+Int32
+Layout_ECUFilterGrid_Enabled_SortOrder
+0
+Int32
+Layout_ECUFilterGrid_Enabled_SortIndex
+-1
+Int32
+Layout_ECUFilterGrid_Enabled_GroupIndex
+-1
+Double
+Layout_ECUFilterGrid_Enabled_Width
+60
+Int32
+Layout_ECUFilterGrid_Name_VisibleIndex
+1
+String
+Layout_ECUFilterGrid_Name_Visible
+1
+True
+Int32
+Layout_ECUFilterGrid_Name_SortOrder
+0
+Int32
+Layout_ECUFilterGrid_Name_SortIndex
+-1
+Int32
+Layout_ECUFilterGrid_Name_GroupIndex
+-1
+Double
+Layout_ECUFilterGrid_Name_Width
+150
+Int32
+Layout_ECUFilterGrid_Direction_VisibleIndex
+2
+String
+Layout_ECUFilterGrid_Direction_Visible
+1
+True
+Int32
+Layout_ECUFilterGrid_Direction_SortOrder
+0
+Int32
+Layout_ECUFilterGrid_Direction_SortIndex
+-1
+Int32
+Layout_ECUFilterGrid_Direction_GroupIndex
+-1
+Double
+Layout_ECUFilterGrid_Direction_Width
+80
+Int32
+Layout_ECUFilterGrid_ChannelText_VisibleIndex
+3
+String
+Layout_ECUFilterGrid_ChannelText_Visible
+1
+True
+Int32
+Layout_ECUFilterGrid_ChannelText_SortOrder
+0
+Int32
+Layout_ECUFilterGrid_ChannelText_SortIndex
+-1
+Int32
+Layout_ECUFilterGrid_ChannelText_GroupIndex
+-1
+Double
+Layout_ECUFilterGrid_ChannelText_Width
+80
+APPDIR Vector.CANalyzer.Serialization.DLL
+Vector.CANalyzer.Serialization, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b273882a063429a6
+Vector.CANalyzer.Serialization.SerializationVersion
+6
+SerializationVersion
+6
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:2
+2
+--TextFormatter: End of Object--
+TypeRef:3
+3
+Int32
+Schema
+0
+Int32
+Mode
+1
+Boolean
+OverviewPane
+True
+Boolean
+FilterEnabled
+True
+Int32
+SelectedTabIndex
+0
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.FrameControlConfiguration
+7
+FrameView
+7
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.ECUControlConfiguration
+8
+ECUView
+8
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.EventControlConfiguration
+9
+EventView
+9
+TypeRef:6
+SerializationVersion
+10
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:4
+4
+Boolean
+Enabled
+True
+APPDIR NetBusSystems.DLL
+NetBusSystems, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.ConfiguredCANIDRange
+10
+ConfiguredIDRangeEvent
+11
+Int32
+Channel
+1
+TypeRef:6
+SerializationVersion
+12
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+1
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:5
+5
+Boolean
+Enabled
+True
+APPDIR NetBusSystems.DLL
+NetBusSystems, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.ConfiguredEventType
+11
+ConfiguredEventType
+13
+Int32
+Channel
+65535
+Int32
+ActivationState
+2
+TypeRef:6
+SerializationVersion
+14
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:7
+7
+Int32
+GroupIndex
+0
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Collections.Generic.List`1[[Vector.CANalyzer.CAN.FilterBlock.IConfiguredColumn, Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null]]
+12
+ColumnConfiguration
+15
+TypeRef:6
+SerializationVersion
+16
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:8
+8
+Int32
+GroupIndex
+0
+TypeRef:12
+ColumnConfiguration
+17
+TypeRef:6
+SerializationVersion
+18
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:9
+9
+Int32
+GroupIndex
+0
+TypeRef:6
+SerializationVersion
+19
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:10
+11
+String
+CANConfigIDRangeEvent
+16
+VConfigMessageRange 11 Begin_Of_Object
+2
+VConfigBusEvent 12 Begin_Of_Object
+1
+VConfigEvent 13 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 13
+1
+1
+End_Of_Object VConfigBusEvent 12
+2632974337
+2684354559
+31
+0
+End_Of_Object VConfigMessageRange 11
+
+--TextFormatter: End of Object--
+TypeRef:11
+13
+String
+ConfiguredEventType
+14
+VConfigEventType 11 Begin_Of_Object
+1
+VConfigBusEvent 12 Begin_Of_Object
+1
+VConfigEvent 13 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 13
+65535
+1
+End_Of_Object VConfigBusEvent 12
+9
+CAN-Errorframe
+End_Of_Object VConfigEventType 11
+
+--TextFormatter: End of Object--
+TypeRef:12
+15
+Array
+_items
+20
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.IConfiguredColumn
+13
+1
+0
+7
+APPDIR Vector.CANalyzer.CAN.FilterBlock.DLL
+Vector.CANalyzer.CAN.FilterBlock, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.FilterBlock.ConfiguredColumn
+14
+ArrayElement
+21
+TypeRef:14
+ArrayElement
+22
+TypeRef:14
+ArrayElement
+23
+TypeRef:14
+ArrayElement
+24
+TypeRef:14
+ArrayElement
+25
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Object
+15
+ArrayElement
+0
+TypeRef:15
+ArrayElement
+0
+TypeRef:15
+ArrayElement
+0
+Int32
+_size
+5
+Int32
+_version
+5
+--TextFormatter: End of Object--
+TypeRef:12
+17
+Array
+_items
+26
+TypeRef:13
+1
+0
+3
+TypeRef:14
+ArrayElement
+27
+TypeRef:14
+ArrayElement
+28
+TypeRef:14
+ArrayElement
+29
+TypeRef:14
+ArrayElement
+30
+Int32
+_size
+4
+Int32
+_version
+4
+--TextFormatter: End of Object--
+TypeRef:14
+21
+UInt32
+Type
+0
+Boolean
+Visible
+True
+TypeRef:6
+SerializationVersion
+31
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:14
+22
+UInt32
+Type
+1
+Boolean
+Visible
+True
+--TextFormatter: End of Object--
+TypeRef:14
+23
+UInt32
+Type
+2
+Boolean
+Visible
+True
+--TextFormatter: End of Object--
+TypeRef:14
+24
+UInt32
+Type
+3
+Boolean
+Visible
+True
+--TextFormatter: End of Object--
+TypeRef:14
+25
+UInt32
+Type
+4
+Boolean
+Visible
+True
+--TextFormatter: End of Object--
+TypeRef:14
+27
+UInt32
+Type
+0
+Boolean
+Visible
+True
+--TextFormatter: End of Object--
+TypeRef:14
+28
+UInt32
+Type
+1
+Boolean
+Visible
+True
+--TextFormatter: End of Object--
+TypeRef:14
+29
+UInt32
+Type
+2
+Boolean
+Visible
+True
+--TextFormatter: End of Object--
+TypeRef:14
+30
+UInt32
+Type
+3
+Boolean
+Visible
+True
+--TextFormatter: End of Object--
+End_Of_Object VNETControlConfiguration 10
+End_Of_Object VNetMSControlConfiguration 9
+VDODynamicLine 9 Begin_Of_Object
+1
+70
+0
+0
+VDAOGBHSStd 10 Begin_Of_Object
+1
+71
+0
+0 0
+TABPredecessor:
+69
+TABSuccessor:
+73
+VDODynamicLine 11 Begin_Of_Object
+1
+72
+0
+0
+VDOFRamification 12 Begin_Of_Object
+1
+73
+0
+TABPredecessor:
+71
+TABSuccessor:
+75
+11
+VDORefinement 13 Begin_Of_Object
+1
+74
+0
+13
+VDAOGBHSStd 14 Begin_Of_Object
+1
+75
+0
+0 0
+TABPredecessor:
+73
+TABSuccessor:
+77
+VDODynamicLine 15 Begin_Of_Object
+1
+76
+0
+0
+VDAOGBFunctionBlock 16 Begin_Of_Object
+1
+77
+0
+TABPredecessor:
+75
+TABSuccessor:
+80
+VNetMSControlConfiguration 17 Begin_Of_Object
+1
+VNETControlConfiguration 18 Begin_Of_Object
+1
+VConfigurationRoot 19 Begin_Of_Object
+1
+End_Of_Object VConfigurationRoot 19
+VNETControlBox 19 Begin_Of_Object
+2
+VUniqueBox 20 Begin_Of_Object
+1
+VBoxRoot 21 Begin_Of_Object
+1
+2
+1 1 0 1 -1 -1 -1 -1 0 0 512 362
+CAN Statistics
+1
+
+MDI_DOCK_INFO_END
+5
+1
+7
+0 1 0 0 -1 -1 199 98 705 498
+0
+1
+0
+0
+0
+0
+END_OF_DESKTOP_DATA
+7
+0 1 0 0 -1 -1 199 98 705 498
+0
+1
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+7
+0 1 -1 -1 -1 -1 0 0 512 362
+1
+1
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+END_OF_DESKTOP_DATA_COLLECTION
+0
+0 0
+END_OF_DESKTOP_MEMBER
+{DF1D1FB8-3F6B-4B58-9502-C920BE0A79B0}
+0
+End_Of_Object VBoxRoot 21
+0 0 0 0 0 0 0 0 0 0 0 0
+End_Of_Object VUniqueBox 20
+1
+0 0 0 0 0 0 0 0 0 0 0 0
+0
+End_Of_Object VNETControlBox 19
+135
+APPDIR Vector.CANalyzer.CAN.StatisticsMonitor.DLL
+Vector.CANalyzer.CAN.StatisticsMonitor, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.CAN.StatisticsMonitor.StatisticsMonitor
+1
+1
+APPDIR NetApplicationServices.DLL
+NetApplicationServices, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.ApplicationSerializer
+2
+App
+2
+UInt16
+Channel
+1
+Array
+States
+3
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.UInt64
+3
+1
+0
+19
+UInt64
+ArrayElement
+65536
+UInt64
+ArrayElement
+65537
+UInt64
+ArrayElement
+65539
+UInt64
+ArrayElement
+65539
+UInt64
+ArrayElement
+65540
+UInt64
+ArrayElement
+65541
+UInt64
+ArrayElement
+65542
+UInt64
+ArrayElement
+65543
+UInt64
+ArrayElement
+65544
+UInt64
+ArrayElement
+65545
+UInt64
+ArrayElement
+65546
+UInt64
+ArrayElement
+65547
+UInt64
+ArrayElement
+18
+UInt64
+ArrayElement
+17
+UInt64
+ArrayElement
+65548
+UInt64
+ArrayElement
+65549
+UInt64
+ArrayElement
+65550
+UInt64
+ArrayElement
+196623
+UInt64
+ArrayElement
+65552
+UInt64
+ArrayElement
+131071
+Array
+ColumnWidths
+4
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Int32
+4
+1
+0
+4
+Int32
+ArrayElement
+160
+Int32
+ArrayElement
+75
+Int32
+ArrayElement
+75
+Int32
+ArrayElement
+75
+Int32
+ArrayElement
+75
+UInt64
+TimerInterval
+10
+UInt64
+TimerIntervalMs
+1050
+APPDIR Vector.CANalyzer.Serialization.DLL
+Vector.CANalyzer.Serialization, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b273882a063429a6
+Vector.CANalyzer.Serialization.SerializationVersion
+5
+SerializationVersion
+5
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+4
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:2
+2
+--TextFormatter: End of Object--
+End_Of_Object VNETControlConfiguration 18
+End_Of_Object VNetMSControlConfiguration 17
+VDOLine 17 Begin_Of_Object
+1
+78
+0
+130 0
+NULL
+End_Of_Object VDOLine 17
+
+EndOfComment
+0
+1
+End_Of_Object VDAOGBFunctionBlock 16
+End_Of_Object VDODynamicLine 15
+End_Of_Object VDAOGBHSStd 14
+NULL
+End_Of_Object VDORefinement 13
+VDORefinement 13 Begin_Of_Object
+1
+79
+0
+7
+VDAOGBHSStd 14 Begin_Of_Object
+1
+80
+0
+0 0
+TABPredecessor:
+77
+TABSuccessor:
+82
+VDODynamicLine 15 Begin_Of_Object
+1
+81
+0
+0
+VDAOGBFunctionBlock 16 Begin_Of_Object
+1
+82
+0
+TABPredecessor:
+80
+TABSuccessor:
+85
+VTraceConfiguration 17 Begin_Of_Object
+1
+VTraceControlCfg 18 Begin_Of_Object
+9
+VTraceSearchCfg 19 Begin_Of_Object
+1
+VEvCondBlock 20 Begin_Of_Object
+1
+VEvCondGroup 21 Begin_Of_Object
+2
+VEvCondPrimitive 22 Begin_Of_Object
+1
+1
+End_Of_Object VEvCondPrimitive 22
+1
+0
+0
+End_Of_Object VEvCondGroup 21
+End_Of_Object VEvCondBlock 20
+0
+End_Of_Object VTraceSearchCfg 19
+VTraceFilterCfg 19 Begin_Of_Object
+2
+0
+1
+VTraceAnalysisFilterGroup 20 Begin_Of_Object
+2
+0
+TEM Thermistors
+2
+VTraceAnalysisSingleFilter 21 Begin_Of_Object
+4
+0
+1
+0
+End_Of_Object VTraceAnalysisSingleFilter 21
+VTraceAnalysisSingleFilter 21 Begin_Of_Object
+4
+0
+0
+9
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869188
+1
+1
+0
+0
+0
+TEM_4_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869189
+1
+1
+0
+0
+0
+TEM_5_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869190
+1
+1
+0
+0
+0
+TEM_6_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869191
+1
+1
+0
+0
+0
+TEM_7_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869192
+1
+1
+0
+0
+0
+TEM_8_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+9
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869193
+1
+1
+0
+0
+0
+TEM_9_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+
+0
+1
+0
+0
+
+0
+1
+0
+0
+
+0
+1
+0
+0
+
+0
+1
+0
+0
+
+0
+1
+0
+0
+
+0
+1
+0
+0
+
+0
+1
+0
+0
+
+0
+1
+0
+0
+
+0
+1
+0
+0
+End_Of_Object VTraceAnalysisSingleFilter 21
+1
+End_Of_Object VTraceAnalysisFilterGroup 20
+VTraceSequenceFilter 20 Begin_Of_Object
+1
+1
+1
+1
+VTraceAnalysisSingleFilter 21 Begin_Of_Object
+4
+0
+0
+0
+End_Of_Object VTraceAnalysisSingleFilter 21
+End_Of_Object VTraceSequenceFilter 20
+End_Of_Object VTraceFilterCfg 19
+1
+0
+0
+0
+46
+0
+0
+1
+0
+2
+0
+3
+0
+4
+0
+5
+0
+6
+1
+18
+GFver=7;ver=5: FT TF TF FT FT FT FF FF FF TF TF FT;F T CANoe;T F _Statistics;F T VCU_Sim;F T _Security
+End_Of_Serialized_Data 18
+7
+0
+8
+0
+9
+0
+10
+0
+11
+1
+18
+ver=5: FT FT FT FT
+End_Of_Serialized_Data 18
+12
+0
+13
+0
+14
+0
+15
+0
+16
+0
+17
+0
+18
+0
+19
+0
+20
+0
+21
+0
+22
+0
+23
+0
+24
+0
+25
+0
+26
+0
+27
+0
+28
+0
+29
+0
+30
+0
+31
+0
+32
+0
+33
+0
+34
+0
+35
+0
+36
+0
+37
+0
+38
+0
+39
+0
+40
+0
+41
+0
+42
+0
+43
+0
+44
+0
+45
+1
+18
+ver=5: FT
+End_Of_Serialized_Data 18
+0
+1
+VTraceColumnConfiguration 19 Begin_Of_Object
+5
+1
+Initial
+157
+VTNColumnData 20 Begin_Of_Object
+4
+0
+150
+0
+Time
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+1
+132
+1
+Chn
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+2
+136
+2
+ID
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+3
+225
+3
+Name
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+4
+170
+-1
+ID / Name
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+5
+43
+5
+Dir
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+6
+45
+6
+DLC
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+7
+270
+7
+Data
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+8
+37
+-1
+Attr
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+9
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+10
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+11
+100
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+12
+100
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+13
+150
+-1
+Frame Duration
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+14
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+15
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+16
+96
+4
+Event Type
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+17
+100
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+18
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+19
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+20
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+21
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+22
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+23
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+24
+85
+-1
+Bus Idle
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+25
+85
+-1
+Bus Busy
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+26
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+27
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+28
+110
+-1
+HH:MM:SS
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+29
+85
+-1
+Diff time
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+30
+50
+-1
+Bustype
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+31
+120
+-1
+Send node
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+32
+50
+-1
+Bus
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+33
+80
+-1
+Database
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+34
+50
+-1
+Counter
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+35
+90
+-1
+Start of Frame
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+36
+50
+-1
+PGN
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+37
+50
+-1
+DP
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+38
+50
+-1
+Prio
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+39
+50
+-1
+Specific 10
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+40
+50
+-1
+Specific 11
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+41
+50
+-1
+Specific 12
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+42
+50
+-1
+Specific 13
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+43
+50
+-1
+Specific 14
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+44
+50
+-1
+Specific 15
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+45
+50
+-1
+Specific 16
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+46
+50
+-1
+Specific 17
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+47
+50
+-1
+Specific 18
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+48
+50
+-1
+Specific 19
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+49
+50
+-1
+Specific 20
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+50
+150
+-1
+Data ASCII
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+51
+150
+-1
+Comment
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+52
+10
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+53
+10
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+54
+50
+-1
+Namespace
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+55
+120
+-1
+Diff time (ref. event)
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+56
+50
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+57
+100
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+58
+100
+-1
+---
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+59
+120
+-1
+Date / Time
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+60
+50
+-1
+Receive Node
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+61
+50
+-1
+VL No.
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+62
+200
+-1
+Sub VL ID
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+63
+50
+-1
+Transmitter
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+64
+200
+-1
+Receiver
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+65
+50
+-1
+Tx Port ID
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+66
+50
+-1
+Rx Port ID
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+67
+65
+-1
+Port Char.
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+68
+50
+-1
+IP Frag.
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+69
+150
+-1
+Master Port Name
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+70
+65
+-1
+BAG
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+71
+65
+-1
+Seq. No.
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+72
+50
+-1
+Line
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+73
+50
+-1
+Interface ID
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+74
+50
+-1
+Equipment
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+75
+50
+-1
+Partition
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+76
+50
+-1
+BRS
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+77
+50
+-1
+ESI
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+78
+45
+-1
+Data length
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+79
+10
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+80
+10
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+81
+10
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+82
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+83
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+84
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+85
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+86
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+87
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+88
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+89
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+90
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+91
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+92
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+93
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+94
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+95
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+96
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+97
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+98
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+99
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+100
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+101
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+102
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+103
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+104
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+105
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+106
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+107
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+108
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+109
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+110
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+111
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+112
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+113
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+114
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+115
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+116
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+117
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+118
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+119
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+120
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+121
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+122
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+123
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+124
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+125
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+126
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+127
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+128
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+129
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+130
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+131
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+132
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+133
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+134
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+135
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+136
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+137
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+138
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+139
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+140
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+141
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+142
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+143
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+144
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+145
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+146
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+147
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+148
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+149
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+150
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+151
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+152
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+153
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+154
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+155
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+VTNColumnData 20 Begin_Of_Object
+4
+156
+50
+-1
+
+1
+0
+1
+0
+0
+End_Of_Object VTNColumnData 20
+End_Of_Object VTraceColumnConfiguration 19
+0
+0
+VTraceControlFixedModeExpansionItems 19 Begin_Of_Object
+3
+35
+VConfigError 20 Begin_Of_Object
+1
+VConfigBusEvent 21 Begin_Of_Object
+1
+VConfigEvent 22 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 22
+2
+1
+End_Of_Object VConfigBusEvent 21
+0
+End_Of_Object VConfigError 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+165
+1
+1
+0
+0
+0
+PM100_Motor_Position_Info
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+166
+1
+1
+0
+0
+0
+PM100_Current_Info
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+167
+1
+1
+0
+0
+0
+PM100_Voltage_Info
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+168
+1
+1
+0
+0
+0
+PM100_Flux_ID_IQ_Info
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+169
+1
+1
+0
+0
+0
+PM100_Internal_Voltages
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+170
+1
+1
+0
+0
+0
+PM100_Internal_States
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+171
+1
+1
+0
+0
+0
+PM100_Fault_Codes
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+2
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+256
+2
+1
+0
+0
+0
+VCU_Sensors
+0
+CANS
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+256
+1
+1
+0
+0
+0
+
+0
+
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+257
+1
+1
+0
+0
+0
+VCU_State
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+2
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+257
+2
+1
+0
+0
+0
+
+0
+
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+258
+1
+1
+0
+0
+0
+VCU_Error
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+259
+1
+1
+0
+0
+0
+
+0
+
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+260
+1
+1
+0
+0
+0
+VCU_PDM
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+261
+1
+1
+0
+0
+0
+
+0
+
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+2
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+261
+2
+1
+0
+0
+0
+VCU_Temps
+0
+CANS
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+1285
+1
+1
+0
+0
+0
+PDM_In_Voltage
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+512
+1
+1
+0
+0
+0
+BMS_Pack_Info
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+513
+1
+1
+0
+0
+0
+BMS_Pack_State
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+514
+1
+1
+0
+0
+0
+BMS_Cell_State
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+515
+1
+1
+0
+0
+0
+BMS_Status
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+2
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+1656
+2
+1
+0
+0
+0
+Pedal_Box_Temp
+0
+CANS
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+2
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+1669
+2
+1
+0
+0
+0
+Dash_Sensors_Digital
+0
+CANS
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869188
+1
+1
+0
+0
+0
+TEM_4_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869189
+1
+1
+0
+0
+0
+TEM_5_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869190
+1
+1
+0
+0
+0
+TEM_6_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869191
+1
+1
+0
+0
+0
+TEM_7_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869192
+1
+1
+0
+0
+0
+TEM_8_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553869193
+1
+1
+0
+0
+0
+TEM_9_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+2553934721
+1
+1
+0
+0
+0
+TEM_1_BMS_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+VConfigMessage 20 Begin_Of_Object
+5
+VConfigBusObject 21 Begin_Of_Object
+1
+VConfigBusEvent 22 Begin_Of_Object
+1
+VConfigEvent 23 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 23
+1
+1
+End_Of_Object VConfigBusEvent 22
+End_Of_Object VConfigBusObject 21
+9
+1
+VDatabaseBusMessageId 21 Begin_Of_Object
+3
+118
+1
+1
+0
+0
+0
+BMS_Fast_Thermistor_Broadcast
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 21
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 20
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+End_Of_Object VTraceControlFixedModeExpansionItems 19
+18
+C:\Users\Public\Documents\Vector\CANoe\19 (x64)\Templates\CANoe
+End_Of_Serialized_Data 18
+18
+Trace-Fenster
+End_Of_Serialized_Data 18
+18
+
+End_Of_Serialized_Data 18
+0
+776880451
+1
+1
+18
+VLogExportPersister 19 Begin_Of_Object
+7
+1416
+44616685
+Trace-Fenster
+ 1 ""
+ 1 ""
+0
+2
+1
+::
+,
+.
+
+0
+2
+0
+0.10000000000000001
+6
+1
+3
+2
+19
+0.10000000000000001
+1
+0
+0
+0
+0
+
+0
+0
+0
+0
+730
+0
+0.10000000000000001
+0
+0
+1
+End_Of_Object VLogExportPersister 19
+
+End_Of_Serialized_Data 18
+0
+0
+0
+290
+1
+227
+ 1 "C:\Users\Public\Documents\Vector\CANoe\19 (x64)\Templates\CANoe"
+1
+End_Of_Object VTraceControlCfg 18
+VNETTraceControlBox 18 Begin_Of_Object
+1
+VNETControlBox 19 Begin_Of_Object
+2
+VUniqueBox 20 Begin_Of_Object
+1
+VBoxRoot 21 Begin_Of_Object
+1
+2
+0 1 0 1 -1 -1 -1 -1 0 0 1275 541
+Trace
+1
+
+MDI_DOCK_INFO_END
+5
+1
+7
+0 1 -1 -1 -1 -1 0 0 1275 541
+1
+1
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+7
+0 1 0 0 0 0 1530 0 1920 785
+1
+1
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+7
+0 1 -1 -1 -1 -1 431 301 1013 595
+0
+1
+0
+0
+0
+0
+END_OF_DESKTOP_DATA
+END_OF_DESKTOP_DATA_COLLECTION
+0
+0 0
+END_OF_DESKTOP_MEMBER
+{31FB7B33-3D93-4EE7-A007-8DB311A944A4}
+0
+End_Of_Object VBoxRoot 21
+0 0 0 0 0 0 0 0 0 0 0 0
+End_Of_Object VUniqueBox 20
+0
+0
+End_Of_Object VNETControlBox 19
+End_Of_Object VNETTraceControlBox 18
+End_Of_Object VTraceConfiguration 17
+VDOLine 17 Begin_Of_Object
+1
+83
+0
+130 0
+NULL
+End_Of_Object VDOLine 17
+
+EndOfComment
+0
+1
+End_Of_Object VDAOGBFunctionBlock 16
+End_Of_Object VDODynamicLine 15
+End_Of_Object VDAOGBHSStd 14
+NULL
+End_Of_Object VDORefinement 13
+VDORefinement 13 Begin_Of_Object
+1
+84
+0
+4
+VDAOGBHSStd 14 Begin_Of_Object
+1
+85
+0
+0 0
+TABPredecessor:
+82
+TABSuccessor:
+87
+VDODynamicLine 15 Begin_Of_Object
+1
+86
+0
+0
+VDAOGBFunctionBlock 16 Begin_Of_Object
+1
+87
+0
+TABPredecessor:
+85
+TABSuccessor:
+90
+VNETDataListControlHost 17 Begin_Of_Object
+4
+VConfigurationRoot 18 Begin_Of_Object
+1
+End_Of_Object VConfigurationRoot 18
+VNETDataBox 18 Begin_Of_Object
+1
+VNETControlBox 19 Begin_Of_Object
+2
+VUniqueBox 20 Begin_Of_Object
+1
+VBoxRoot 21 Begin_Of_Object
+1
+2
+1 2 0 1 -1 -1 -1 -1 513 0 1030 265
+Data
+1
+
+MDI_DOCK_INFO_END
+5
+1
+7
+0 1 -1 -1 -1 -1 0 0 423 193
+0
+0
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+7
+0 1 0 0 -1 -1 0 0 423 193
+0
+2
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+7
+0 1 -1 -1 -1 -1 513 0 1030 265
+1
+2
+0
+0
+1
+0
+END_OF_DESKTOP_DATA
+END_OF_DESKTOP_DATA_COLLECTION
+0
+0 0
+END_OF_DESKTOP_MEMBER
+{AA76F618-2087-4A48-B611-BF29871F1267}
+0
+End_Of_Object VBoxRoot 21
+0 0 0 0 0 0 0 0 0 0 0 0
+End_Of_Object VUniqueBox 20
+0
+0
+End_Of_Object VNETControlBox 19
+End_Of_Object VNETDataBox 18
+1
+9
+0
+20 150 16 100 40 40 50 100 60 100 1
+35 35
+30
+70 70 70 100
+100
+1 1 0 1 0 0 1 1 1 0 1
+0 0
+0
+0 0 0 0
+0
+1 0
+5000 0 10000 0 10000
+1 0
+VLogCfgData 18 Begin_Of_Object
+14
+0
+0
+0
+0
+0
+0
+0
+0
+1024
+60
+0
+0
+0
+3
+1
+212
+1
+1
+0
+2
+0
+0
+18
+VLogExportPersister 19 Begin_Of_Object
+7
+1416
+11062249
+ 1 ""
+ 1 ""
+ 1 ""
+0
+2
+1
+::
+,
+.
+
+0
+2
+0
+0.10000000000000001
+6
+1
+3
+2
+19
+0.10000000000000001
+1
+0
+0
+0
+0
+
+0
+0
+0
+0
+730
+0
+0.10000000000000001
+0
+0
+1
+End_Of_Object VLogExportPersister 19
+
+End_Of_Serialized_Data 18
+ 1 "Data_Tabular.mdf"
+0
+1
+0
+30
+80
+0
+1
+1
+0
+
+
+ 1 "{LoggingBlock}.mdf"
+ 1 "Data_Tabular.mdf"
+1
+1
+ 1 "{LoggingBlock}.mdf"
+0
+a56d598d-3d7e-402d-a558-5d36153d605c
+1
+VLoggingComment 19 Begin_Of_Object
+1
+1
+VLoggingCommentAttribute 20 Begin_Of_Object
+1
+Comment
+
+1
+End_Of_Object VLoggingCommentAttribute 20
+End_Of_Object VLoggingComment 19
+3
+0
+0
+End_Of_Object VLogCfgData 18
+1
+[End_of_Control]
+1906
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.ComponentWrapper
+1
+1
+APPDIR NetApplicationServices.DLL
+NetApplicationServices, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.ApplicationSerializer
+2
+Application
+2
+Int32
+SelectedTabIndex
+1
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.TreeListColumnSerializationInfo
+3
+Column_0
+3
+TypeRef:3
+Column_1
+4
+TypeRef:3
+Column_2
+5
+TypeRef:3
+Column_3
+6
+TypeRef:3
+Column_4
+7
+TypeRef:3
+Column_5
+8
+TypeRef:3
+Column_6
+9
+TypeRef:3
+Column_7
+10
+TypeRef:3
+Column_8
+11
+TypeRef:3
+Column_9
+12
+TypeRef:3
+Column_10
+13
+TypeRef:3
+Column_11
+14
+TypeRef:3
+Column_12
+15
+TypeRef:3
+Column_13
+16
+TypeRef:3
+Column_14
+17
+Int32
+ColumnsNum
+15
+Int32
+NumItemSerializers
+9
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.ConfiguredItemSerializer
+4
+itemSerializer_0
+18
+TypeRef:4
+itemSerializer_1
+19
+TypeRef:4
+itemSerializer_2
+20
+TypeRef:4
+itemSerializer_3
+21
+TypeRef:4
+itemSerializer_4
+22
+TypeRef:4
+itemSerializer_5
+23
+TypeRef:4
+itemSerializer_6
+24
+TypeRef:4
+itemSerializer_7
+25
+TypeRef:4
+itemSerializer_8
+26
+Int32
+LastValueTimeDecimalPlaces
+6
+Boolean
+PhysValueConditionalFormattingEnabled
+True
+Boolean
+IsFavoriteFilteringActive
+False
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.Favorite
+5
+CurrentFavorite
+27
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Collections.Generic.List`1[[Vector.CANalyzer.Data.Favorite, Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null]]
+6
+Favorites
+28
+Boolean
+AllArrayFiltersActive
+True
+Boolean
+AddNewSymbolsToActiveFavoriteGroup
+True
+Boolean
+AddNewSymbolsToSameFavoriteGroupAsCustomGroup
+True
+APPDIR Vector.CANalyzer.Serialization.DLL
+Vector.CANalyzer.Serialization, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b273882a063429a6
+Vector.CANalyzer.Serialization.SerializationVersion
+7
+SerializationVersion
+29
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+8
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:2
+2
+--TextFormatter: End of Object--
+TypeRef:3
+3
+Int32
+columnID
+0
+Int32
+columnIndex
+0
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+128
+TypeRef:7
+SerializationVersion
+30
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:3
+4
+Int32
+columnID
+1
+Int32
+columnIndex
+1
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+30
+--TextFormatter: End of Object--
+TypeRef:3
+5
+Int32
+columnID
+2
+Int32
+columnIndex
+2
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+6
+Int32
+columnID
+3
+Int32
+columnIndex
+3
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+7
+Int32
+columnID
+4
+Int32
+columnIndex
+4
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+8
+Int32
+columnID
+5
+Int32
+columnIndex
+5
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+65
+--TextFormatter: End of Object--
+TypeRef:3
+9
+Int32
+columnID
+6
+Int32
+columnIndex
+6
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+10
+Int32
+columnID
+7
+Int32
+columnIndex
+7
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+11
+Int32
+columnID
+8
+Int32
+columnIndex
+8
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+50
+--TextFormatter: End of Object--
+TypeRef:3
+12
+Int32
+columnID
+9
+Int32
+columnIndex
+9
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+65
+--TextFormatter: End of Object--
+TypeRef:3
+13
+Int32
+columnID
+10
+Int32
+columnIndex
+10
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+105
+--TextFormatter: End of Object--
+TypeRef:3
+14
+Int32
+columnID
+11
+Int32
+columnIndex
+11
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+65
+--TextFormatter: End of Object--
+TypeRef:3
+15
+Int32
+columnID
+12
+Int32
+columnIndex
+12
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+16
+Int32
+columnID
+13
+Int32
+columnIndex
+13
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+17
+Int32
+columnID
+14
+Int32
+columnIndex
+14
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:4
+18
+String
+Identifier
+1
+CAN-T::CANT::::PDM_Out_Voltage::PDM_Output_6_Voltage
+Int32
+ObjectType
+0
+APPDIR NetAnalysisAndSimulation.DLL
+NetAnalysisAndSimulation, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.ConfiguredDBSignal
+8
+Qualifier
+31
+Int32
+Position
+0
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.ViewSettingsSerializer
+9
+ViewSettings
+32
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+TypeRef:7
+SerializationVersion
+33
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+1
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:4
+19
+String
+Identifier
+1
+CAN-T::CANT::::PDM_Out_Load::PDM_Output_6_Load
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+34
+Int32
+Position
+1
+TypeRef:9
+ViewSettings
+35
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+20
+String
+Identifier
+1
+CAN-T::CANT::::PDM_Out_Status::PDM_Output_6_Status
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+36
+Int32
+Position
+2
+TypeRef:9
+ViewSettings
+37
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+21
+String
+Identifier
+1
+CAN-T::CANT::::PDM_Out_Current::PDM_Output_6_Current
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+38
+Int32
+Position
+3
+TypeRef:9
+ViewSettings
+39
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+22
+String
+Identifier
+1
+CAN-T::CANT::VCU::VCU_PDM::Inverter
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+40
+Int32
+Position
+4
+TypeRef:9
+ViewSettings
+41
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+23
+String
+Identifier
+1
+CAN-T::CANT::::PDM_Out_Voltage::PDM_Output_3_Voltage
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+42
+Int32
+Position
+5
+TypeRef:9
+ViewSettings
+43
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+24
+String
+Identifier
+1
+CAN-T::CANT::::PDM_Out_Current::PDM_Output_3_Current
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+44
+Int32
+Position
+6
+TypeRef:9
+ViewSettings
+45
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+25
+String
+Identifier
+1
+CAN-T::CANT::::PDM_Out_Status::PDM_Output_3_Status
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+46
+Int32
+Position
+7
+TypeRef:9
+ViewSettings
+47
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+26
+String
+Identifier
+1
+CAN-T::CANT::VCU::VCU_PDM::Brakelight
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+48
+Int32
+Position
+8
+TypeRef:9
+ViewSettings
+49
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:5
+27
+Int32
+ID
+1
+String
+Name
+1
+Favorite 1
+Int32
+Color
+-13312
+TypeRef:7
+SerializationVersion
+50
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:6
+28
+Array
+_items
+51
+TypeRef:5
+1
+0
+3
+TypeRef:5
+ArrayElement
+52
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Object
+10
+ArrayElement
+0
+TypeRef:10
+ArrayElement
+0
+TypeRef:10
+ArrayElement
+0
+Int32
+_size
+1
+Int32
+_version
+1
+--TextFormatter: End of Object--
+TypeRef:8
+31
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+1283
+1
+1
+0
+0
+0
+PDM_Out_Voltage
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+PDM_Output_6_Voltage
+1
+1
+1
+CAN-T
+CANT
+
+1283
+PDM_Out_Voltage
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+32
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Collections.Generic.List`1[[Vector.CANalyzer.Data.ConditionalFormattingRule, Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null]]
+11
+UserDefinedConditionalFormattingRules
+53
+TypeRef:5
+Favorite
+54
+TypeRef:10
+UserDefinedName
+0
+TypeRef:7
+SerializationVersion
+55
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+7
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:8
+34
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+1282
+1
+1
+0
+0
+0
+PDM_Out_Load
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+PDM_Output_6_Load
+1
+1
+1
+CAN-T
+CANT
+
+1282
+PDM_Out_Load
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+35
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+56
+TypeRef:5
+Favorite
+57
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+36
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+1284
+1
+1
+0
+0
+0
+PDM_Out_Status
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+PDM_Output_6_Status
+1
+1
+1
+CAN-T
+CANT
+
+1284
+PDM_Out_Status
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+37
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+58
+TypeRef:5
+Favorite
+59
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+38
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+1281
+1
+1
+0
+0
+0
+PDM_Out_Current
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+PDM_Output_6_Current
+1
+1
+1
+CAN-T
+CANT
+
+1281
+PDM_Out_Current
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+39
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+60
+TypeRef:5
+Favorite
+61
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+40
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+260
+1
+1
+0
+0
+0
+VCU_PDM
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+Inverter
+1
+1
+1
+CAN-T
+CANT
+VCU
+260
+VCU_PDM
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+41
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+62
+TypeRef:5
+Favorite
+63
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+42
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+1283
+1
+1
+0
+0
+0
+PDM_Out_Voltage
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+PDM_Output_3_Voltage
+1
+1
+1
+CAN-T
+CANT
+
+1283
+PDM_Out_Voltage
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+43
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+64
+TypeRef:5
+Favorite
+65
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+44
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+1281
+1
+1
+0
+0
+0
+PDM_Out_Current
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+PDM_Output_3_Current
+1
+1
+1
+CAN-T
+CANT
+
+1281
+PDM_Out_Current
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+45
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+66
+TypeRef:5
+Favorite
+67
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+46
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+1284
+1
+1
+0
+0
+0
+PDM_Out_Status
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+PDM_Output_3_Status
+1
+1
+1
+CAN-T
+CANT
+
+1284
+PDM_Out_Status
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+47
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+68
+TypeRef:5
+Favorite
+69
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+48
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+260
+1
+1
+0
+0
+0
+VCU_PDM
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+Brakelight
+1
+1
+1
+CAN-T
+CANT
+VCU
+260
+VCU_PDM
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+49
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+70
+TypeRef:5
+Favorite
+71
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:5
+52
+Int32
+ID
+1
+String
+Name
+1
+Favorite 1
+Int32
+Color
+-13312
+--TextFormatter: End of Object--
+TypeRef:11
+53
+Array
+_items
+72
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.ConditionalFormattingRule
+12
+1
+0
+-1
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+54
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+TypeRef:11
+56
+Array
+_items
+72
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+57
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+TypeRef:11
+58
+Array
+_items
+72
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+59
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+TypeRef:11
+60
+Array
+_items
+72
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+61
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+TypeRef:11
+62
+Array
+_items
+72
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+63
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+TypeRef:11
+64
+Array
+_items
+73
+TypeRef:12
+1
+0
+-1
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+65
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+TypeRef:11
+66
+Array
+_items
+73
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+67
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+TypeRef:11
+68
+Array
+_items
+73
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+69
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+TypeRef:11
+70
+Array
+_items
+73
+Int32
+_size
+0
+Int32
+_version
+0
+--TextFormatter: End of Object--
+TypeRef:5
+71
+Int32
+ID
+-1
+String
+Name
+1
+None
+Int32
+Color
+-5658199
+--TextFormatter: End of Object--
+VLogCfgData 18 Begin_Of_Object
+14
+0
+0
+0
+0
+0
+0
+0
+0
+1024
+60
+0
+0
+0
+3
+0
+212
+1
+1
+0
+2
+0
+0
+18
+VLogExportPersister 19 Begin_Of_Object
+7
+1416
+11062249
+ 1 ""
+ 1 ""
+ 1 ""
+0
+2
+1
+::
+,
+.
+
+0
+2
+0
+0.10000000000000001
+6
+1
+3
+2
+19
+0.10000000000000001
+1
+0
+0
+0
+0
+
+0
+0
+0
+0
+730
+0
+0.10000000000000001
+0
+0
+1
+End_Of_Object VLogExportPersister 19
+
+End_Of_Serialized_Data 18
+ 1 "C:\Users\Public\Documents\Vector\CANoe\19 (x64)\Templates\CANoe\Data.mdf"
+0
+1
+0
+10
+80
+0
+1
+1
+0
+
+
+ 1 "C:\Users\Public\Documents\Vector\CANoe\19 (x64)\Templates\CANoe\{LoggingBlock}.mdf"
+ 1 "C:\Users\Public\Documents\Vector\CANoe\19 (x64)\Templates\CANoe\Data.mdf"
+1
+0
+ 1 "C:\Users\Public\Documents\Vector\CANoe\19 (x64)\Templates\CANoe\{LoggingBlock}.mdf"
+0
+6fb43288-e2f7-4a8b-b34b-00758f0416cd
+1
+VLoggingComment 19 Begin_Of_Object
+1
+1
+VLoggingCommentAttribute 20 Begin_Of_Object
+1
+Comment
+
+1
+End_Of_Object VLoggingCommentAttribute 20
+End_Of_Object VLoggingComment 19
+3
+0
+0
+End_Of_Object VLogCfgData 18
+End_Of_Object VNETDataListControlHost 17
+VDOLine 17 Begin_Of_Object
+1
+88
+0
+130 0
+NULL
+End_Of_Object VDOLine 17
+
+EndOfComment
+0
+1
+End_Of_Object VDAOGBFunctionBlock 16
+End_Of_Object VDODynamicLine 15
+End_Of_Object VDAOGBHSStd 14
+NULL
+End_Of_Object VDORefinement 13
+VDORefinement 13 Begin_Of_Object
+1
+89
+0
+4
+VDAOGBHSStd 14 Begin_Of_Object
+1
+90
+0
+0 0
+TABPredecessor:
+87
+TABSuccessor:
+92
+VDODynamicLine 15 Begin_Of_Object
+1
+91
+0
+0
+VDAOGBFunctionBlock 16 Begin_Of_Object
+1
+92
+0
+TABPredecessor:
+90
+TABSuccessor:
+95
+VNETDataListControlHost 17 Begin_Of_Object
+4
+VConfigurationRoot 18 Begin_Of_Object
+1
+End_Of_Object VConfigurationRoot 18
+VNETDataBox 18 Begin_Of_Object
+1
+VNETControlBox 19 Begin_Of_Object
+2
+VUniqueBox 20 Begin_Of_Object
+1
+VBoxRoot 21 Begin_Of_Object
+1
+2
+1 -1 0 1 0 0 0 0 384 157 1536 628
+Individual TEMs
+1
+
+MDI_DOCK_INFO_END
+5
+1
+7
+0 1 0 0 -1 -1 384 157 1536 628
+0
+-1
+0
+0
+0
+0
+END_OF_DESKTOP_DATA
+7
+0 1 0 0 0 0 384 157 1536 628
+0
+0
+1
+0 3 0 0 -1 -1 0 418 1920 601
+0
+1
+3
+END_OF_DESKTOP_DATA
+7
+0 1 0 0 -1 -1 384 157 1536 628
+0
+-1
+0
+0
+0
+0
+END_OF_DESKTOP_DATA
+END_OF_DESKTOP_DATA_COLLECTION
+0
+0 0
+END_OF_DESKTOP_MEMBER
+{9C4AB1D7-AE8D-47EC-9CCB-4C90D1D4E3AD}
+0
+End_Of_Object VBoxRoot 21
+0 0 0 0 0 0 0 0 0 0 0 0
+End_Of_Object VUniqueBox 20
+0
+0
+End_Of_Object VNETControlBox 19
+End_Of_Object VNETDataBox 18
+1
+9
+0
+20 150 16 100 75 75 50 100 100 100 1
+35 35
+30
+70 70 70 100
+100
+1 1 0 1 0 0 1 1 1 0 1
+0 0
+0
+0 0 0 0
+0
+1 0
+25000 0 10000 0 10000
+1 0
+VLogCfgData 18 Begin_Of_Object
+14
+0
+0
+0
+0
+0
+0
+0
+0
+1024
+60
+0
+0
+0
+3
+1
+212
+1
+1
+0
+2
+0
+0
+18
+VLogExportPersister 19 Begin_Of_Object
+7
+1416
+11062249
+ 1 ""
+ 1 ""
+ 1 ""
+0
+2
+1
+::
+,
+.
+
+0
+2
+0
+0.10000000000000001
+6
+1
+3
+2
+19
+0.10000000000000001
+1
+0
+0
+0
+0
+
+0
+0
+0
+0
+730
+0
+0.10000000000000001
+0
+0
+1
+End_Of_Object VLogExportPersister 19
+
+End_Of_Serialized_Data 18
+ 1 "Individual_TEMs_Tabular.mdf"
+0
+1
+0
+30
+80
+0
+1
+1
+0
+
+
+ 1 "{LoggingBlock}.mdf"
+ 1 "Individual_TEMs_Tabular.mdf"
+1
+1
+ 1 "{LoggingBlock}.mdf"
+0
+15239c9b-1610-4de6-b2f0-e530b01e2dc3
+1
+VLoggingComment 19 Begin_Of_Object
+1
+1
+VLoggingCommentAttribute 20 Begin_Of_Object
+1
+Comment
+
+1
+End_Of_Object VLoggingCommentAttribute 20
+End_Of_Object VLoggingComment 19
+3
+0
+0
+End_Of_Object VLogCfgData 18
+1
+[End_of_Control]
+34815
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.ComponentWrapper
+1
+1
+APPDIR NetApplicationServices.DLL
+NetApplicationServices, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.ApplicationSerializer
+2
+Application
+2
+Int32
+SelectedTabIndex
+1
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.TreeListColumnSerializationInfo
+3
+Column_0
+3
+TypeRef:3
+Column_1
+4
+TypeRef:3
+Column_2
+5
+TypeRef:3
+Column_3
+6
+TypeRef:3
+Column_4
+7
+TypeRef:3
+Column_5
+8
+TypeRef:3
+Column_6
+9
+TypeRef:3
+Column_7
+10
+TypeRef:3
+Column_8
+11
+TypeRef:3
+Column_9
+12
+TypeRef:3
+Column_10
+13
+TypeRef:3
+Column_11
+14
+TypeRef:3
+Column_12
+15
+TypeRef:3
+Column_13
+16
+TypeRef:3
+Column_14
+17
+Int32
+ColumnsNum
+15
+Int32
+NumItemSerializers
+216
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.ConfiguredItemSerializer
+4
+itemSerializer_0
+18
+TypeRef:4
+itemSerializer_1
+19
+TypeRef:4
+itemSerializer_2
+20
+TypeRef:4
+itemSerializer_3
+21
+TypeRef:4
+itemSerializer_4
+22
+TypeRef:4
+itemSerializer_5
+23
+TypeRef:4
+itemSerializer_6
+24
+TypeRef:4
+itemSerializer_7
+25
+TypeRef:4
+itemSerializer_8
+26
+TypeRef:4
+itemSerializer_9
+27
+TypeRef:4
+itemSerializer_10
+28
+TypeRef:4
+itemSerializer_11
+29
+TypeRef:4
+itemSerializer_12
+30
+TypeRef:4
+itemSerializer_13
+31
+TypeRef:4
+itemSerializer_14
+32
+TypeRef:4
+itemSerializer_15
+33
+TypeRef:4
+itemSerializer_16
+34
+TypeRef:4
+itemSerializer_17
+35
+TypeRef:4
+itemSerializer_18
+36
+TypeRef:4
+itemSerializer_19
+37
+TypeRef:4
+itemSerializer_20
+38
+TypeRef:4
+itemSerializer_21
+39
+TypeRef:4
+itemSerializer_22
+40
+TypeRef:4
+itemSerializer_23
+41
+TypeRef:4
+itemSerializer_24
+42
+TypeRef:4
+itemSerializer_25
+43
+TypeRef:4
+itemSerializer_26
+44
+TypeRef:4
+itemSerializer_27
+45
+TypeRef:4
+itemSerializer_28
+46
+TypeRef:4
+itemSerializer_29
+47
+TypeRef:4
+itemSerializer_30
+48
+TypeRef:4
+itemSerializer_31
+49
+TypeRef:4
+itemSerializer_32
+50
+TypeRef:4
+itemSerializer_33
+51
+TypeRef:4
+itemSerializer_34
+52
+TypeRef:4
+itemSerializer_35
+53
+TypeRef:4
+itemSerializer_36
+54
+TypeRef:4
+itemSerializer_37
+55
+TypeRef:4
+itemSerializer_38
+56
+TypeRef:4
+itemSerializer_39
+57
+TypeRef:4
+itemSerializer_40
+58
+TypeRef:4
+itemSerializer_41
+59
+TypeRef:4
+itemSerializer_42
+60
+TypeRef:4
+itemSerializer_43
+61
+TypeRef:4
+itemSerializer_44
+62
+TypeRef:4
+itemSerializer_45
+63
+TypeRef:4
+itemSerializer_46
+64
+TypeRef:4
+itemSerializer_47
+65
+TypeRef:4
+itemSerializer_48
+66
+TypeRef:4
+itemSerializer_49
+67
+TypeRef:4
+itemSerializer_50
+68
+TypeRef:4
+itemSerializer_51
+69
+TypeRef:4
+itemSerializer_52
+70
+TypeRef:4
+itemSerializer_53
+71
+TypeRef:4
+itemSerializer_54
+72
+TypeRef:4
+itemSerializer_55
+73
+TypeRef:4
+itemSerializer_56
+74
+TypeRef:4
+itemSerializer_57
+75
+TypeRef:4
+itemSerializer_58
+76
+TypeRef:4
+itemSerializer_59
+77
+TypeRef:4
+itemSerializer_60
+78
+TypeRef:4
+itemSerializer_61
+79
+TypeRef:4
+itemSerializer_62
+80
+TypeRef:4
+itemSerializer_63
+81
+TypeRef:4
+itemSerializer_64
+82
+TypeRef:4
+itemSerializer_65
+83
+TypeRef:4
+itemSerializer_66
+84
+TypeRef:4
+itemSerializer_67
+85
+TypeRef:4
+itemSerializer_68
+86
+TypeRef:4
+itemSerializer_69
+87
+TypeRef:4
+itemSerializer_70
+88
+TypeRef:4
+itemSerializer_71
+89
+TypeRef:4
+itemSerializer_72
+90
+TypeRef:4
+itemSerializer_73
+91
+TypeRef:4
+itemSerializer_74
+92
+TypeRef:4
+itemSerializer_75
+93
+TypeRef:4
+itemSerializer_76
+94
+TypeRef:4
+itemSerializer_77
+95
+TypeRef:4
+itemSerializer_78
+96
+TypeRef:4
+itemSerializer_79
+97
+TypeRef:4
+itemSerializer_80
+98
+TypeRef:4
+itemSerializer_81
+99
+TypeRef:4
+itemSerializer_82
+100
+TypeRef:4
+itemSerializer_83
+101
+TypeRef:4
+itemSerializer_84
+102
+TypeRef:4
+itemSerializer_85
+103
+TypeRef:4
+itemSerializer_86
+104
+TypeRef:4
+itemSerializer_87
+105
+TypeRef:4
+itemSerializer_88
+106
+TypeRef:4
+itemSerializer_89
+107
+TypeRef:4
+itemSerializer_90
+108
+TypeRef:4
+itemSerializer_91
+109
+TypeRef:4
+itemSerializer_92
+110
+TypeRef:4
+itemSerializer_93
+111
+TypeRef:4
+itemSerializer_94
+112
+TypeRef:4
+itemSerializer_95
+113
+TypeRef:4
+itemSerializer_96
+114
+TypeRef:4
+itemSerializer_97
+115
+TypeRef:4
+itemSerializer_98
+116
+TypeRef:4
+itemSerializer_99
+117
+TypeRef:4
+itemSerializer_100
+118
+TypeRef:4
+itemSerializer_101
+119
+TypeRef:4
+itemSerializer_102
+120
+TypeRef:4
+itemSerializer_103
+121
+TypeRef:4
+itemSerializer_104
+122
+TypeRef:4
+itemSerializer_105
+123
+TypeRef:4
+itemSerializer_106
+124
+TypeRef:4
+itemSerializer_107
+125
+TypeRef:4
+itemSerializer_108
+126
+TypeRef:4
+itemSerializer_109
+127
+TypeRef:4
+itemSerializer_110
+128
+TypeRef:4
+itemSerializer_111
+129
+TypeRef:4
+itemSerializer_112
+130
+TypeRef:4
+itemSerializer_113
+131
+TypeRef:4
+itemSerializer_114
+132
+TypeRef:4
+itemSerializer_115
+133
+TypeRef:4
+itemSerializer_116
+134
+TypeRef:4
+itemSerializer_117
+135
+TypeRef:4
+itemSerializer_118
+136
+TypeRef:4
+itemSerializer_119
+137
+TypeRef:4
+itemSerializer_120
+138
+TypeRef:4
+itemSerializer_121
+139
+TypeRef:4
+itemSerializer_122
+140
+TypeRef:4
+itemSerializer_123
+141
+TypeRef:4
+itemSerializer_124
+142
+TypeRef:4
+itemSerializer_125
+143
+TypeRef:4
+itemSerializer_126
+144
+TypeRef:4
+itemSerializer_127
+145
+TypeRef:4
+itemSerializer_128
+146
+TypeRef:4
+itemSerializer_129
+147
+TypeRef:4
+itemSerializer_130
+148
+TypeRef:4
+itemSerializer_131
+149
+TypeRef:4
+itemSerializer_132
+150
+TypeRef:4
+itemSerializer_133
+151
+TypeRef:4
+itemSerializer_134
+152
+TypeRef:4
+itemSerializer_135
+153
+TypeRef:4
+itemSerializer_136
+154
+TypeRef:4
+itemSerializer_137
+155
+TypeRef:4
+itemSerializer_138
+156
+TypeRef:4
+itemSerializer_139
+157
+TypeRef:4
+itemSerializer_140
+158
+TypeRef:4
+itemSerializer_141
+159
+TypeRef:4
+itemSerializer_142
+160
+TypeRef:4
+itemSerializer_143
+161
+TypeRef:4
+itemSerializer_144
+162
+TypeRef:4
+itemSerializer_145
+163
+TypeRef:4
+itemSerializer_146
+164
+TypeRef:4
+itemSerializer_147
+165
+TypeRef:4
+itemSerializer_148
+166
+TypeRef:4
+itemSerializer_149
+167
+TypeRef:4
+itemSerializer_150
+168
+TypeRef:4
+itemSerializer_151
+169
+TypeRef:4
+itemSerializer_152
+170
+TypeRef:4
+itemSerializer_153
+171
+TypeRef:4
+itemSerializer_154
+172
+TypeRef:4
+itemSerializer_155
+173
+TypeRef:4
+itemSerializer_156
+174
+TypeRef:4
+itemSerializer_157
+175
+TypeRef:4
+itemSerializer_158
+176
+TypeRef:4
+itemSerializer_159
+177
+TypeRef:4
+itemSerializer_160
+178
+TypeRef:4
+itemSerializer_161
+179
+TypeRef:4
+itemSerializer_162
+180
+TypeRef:4
+itemSerializer_163
+181
+TypeRef:4
+itemSerializer_164
+182
+TypeRef:4
+itemSerializer_165
+183
+TypeRef:4
+itemSerializer_166
+184
+TypeRef:4
+itemSerializer_167
+185
+TypeRef:4
+itemSerializer_168
+186
+TypeRef:4
+itemSerializer_169
+187
+TypeRef:4
+itemSerializer_170
+188
+TypeRef:4
+itemSerializer_171
+189
+TypeRef:4
+itemSerializer_172
+190
+TypeRef:4
+itemSerializer_173
+191
+TypeRef:4
+itemSerializer_174
+192
+TypeRef:4
+itemSerializer_175
+193
+TypeRef:4
+itemSerializer_176
+194
+TypeRef:4
+itemSerializer_177
+195
+TypeRef:4
+itemSerializer_178
+196
+TypeRef:4
+itemSerializer_179
+197
+TypeRef:4
+itemSerializer_180
+198
+TypeRef:4
+itemSerializer_181
+199
+TypeRef:4
+itemSerializer_182
+200
+TypeRef:4
+itemSerializer_183
+201
+TypeRef:4
+itemSerializer_184
+202
+TypeRef:4
+itemSerializer_185
+203
+TypeRef:4
+itemSerializer_186
+204
+TypeRef:4
+itemSerializer_187
+205
+TypeRef:4
+itemSerializer_188
+206
+TypeRef:4
+itemSerializer_189
+207
+TypeRef:4
+itemSerializer_190
+208
+TypeRef:4
+itemSerializer_191
+209
+TypeRef:4
+itemSerializer_192
+210
+TypeRef:4
+itemSerializer_193
+211
+TypeRef:4
+itemSerializer_194
+212
+TypeRef:4
+itemSerializer_195
+213
+TypeRef:4
+itemSerializer_196
+214
+TypeRef:4
+itemSerializer_197
+215
+TypeRef:4
+itemSerializer_198
+216
+TypeRef:4
+itemSerializer_199
+217
+TypeRef:4
+itemSerializer_200
+218
+TypeRef:4
+itemSerializer_201
+219
+TypeRef:4
+itemSerializer_202
+220
+TypeRef:4
+itemSerializer_203
+221
+TypeRef:4
+itemSerializer_204
+222
+TypeRef:4
+itemSerializer_205
+223
+TypeRef:4
+itemSerializer_206
+224
+TypeRef:4
+itemSerializer_207
+225
+TypeRef:4
+itemSerializer_208
+226
+TypeRef:4
+itemSerializer_209
+227
+TypeRef:4
+itemSerializer_210
+228
+TypeRef:4
+itemSerializer_211
+229
+TypeRef:4
+itemSerializer_212
+230
+TypeRef:4
+itemSerializer_213
+231
+TypeRef:4
+itemSerializer_214
+232
+TypeRef:4
+itemSerializer_215
+233
+Int32
+LastValueTimeDecimalPlaces
+6
+Boolean
+PhysValueConditionalFormattingEnabled
+True
+Boolean
+IsFavoriteFilteringActive
+False
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.Favorite
+5
+CurrentFavorite
+234
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Collections.Generic.List`1[[Vector.CANalyzer.Data.Favorite, Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null]]
+6
+Favorites
+235
+Boolean
+AllArrayFiltersActive
+True
+Boolean
+AddNewSymbolsToActiveFavoriteGroup
+True
+Boolean
+AddNewSymbolsToSameFavoriteGroupAsCustomGroup
+True
+APPDIR Vector.CANalyzer.Serialization.DLL
+Vector.CANalyzer.Serialization, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b273882a063429a6
+Vector.CANalyzer.Serialization.SerializationVersion
+7
+SerializationVersion
+236
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+8
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:2
+2
+--TextFormatter: End of Object--
+TypeRef:3
+3
+Int32
+columnID
+0
+Int32
+columnIndex
+0
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+198.4
+TypeRef:7
+SerializationVersion
+237
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:3
+4
+Int32
+columnID
+1
+Int32
+columnIndex
+1
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+30
+--TextFormatter: End of Object--
+TypeRef:3
+5
+Int32
+columnID
+2
+Int32
+columnIndex
+2
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+6
+Int32
+columnID
+3
+Int32
+columnIndex
+3
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+7
+Int32
+columnID
+4
+Int32
+columnIndex
+4
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+8
+Int32
+columnID
+5
+Int32
+columnIndex
+5
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+65
+--TextFormatter: End of Object--
+TypeRef:3
+9
+Int32
+columnID
+6
+Int32
+columnIndex
+6
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+10
+Int32
+columnID
+7
+Int32
+columnIndex
+7
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+11
+Int32
+columnID
+8
+Int32
+columnIndex
+8
+Boolean
+columnIsVisible
+True
+Double
+columnWidth
+50
+--TextFormatter: End of Object--
+TypeRef:3
+12
+Int32
+columnID
+9
+Int32
+columnIndex
+9
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+65
+--TextFormatter: End of Object--
+TypeRef:3
+13
+Int32
+columnID
+10
+Int32
+columnIndex
+10
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+105
+--TextFormatter: End of Object--
+TypeRef:3
+14
+Int32
+columnID
+11
+Int32
+columnIndex
+11
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+65
+--TextFormatter: End of Object--
+TypeRef:3
+15
+Int32
+columnID
+12
+Int32
+columnIndex
+12
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+16
+Int32
+columnID
+13
+Int32
+columnIndex
+13
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:3
+17
+Int32
+columnID
+14
+Int32
+columnIndex
+14
+Boolean
+columnIsVisible
+False
+Double
+columnWidth
+80
+--TextFormatter: End of Object--
+TypeRef:4
+18
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_080_value
+Int32
+ObjectType
+0
+APPDIR NetAnalysisAndSimulation.DLL
+NetAnalysisAndSimulation, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.ConfiguredDBSignal
+8
+Qualifier
+238
+Int32
+Position
+0
+APPDIR Vector.CANalyzer.Data.DLL
+Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null
+Vector.CANalyzer.Data.ViewSettingsSerializer
+9
+ViewSettings
+239
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+TypeRef:7
+SerializationVersion
+240
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+1
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:4
+19
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_081_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+241
+Int32
+Position
+1
+TypeRef:9
+ViewSettings
+242
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+20
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_082_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+243
+Int32
+Position
+2
+TypeRef:9
+ViewSettings
+244
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+21
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_083_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+245
+Int32
+Position
+3
+TypeRef:9
+ViewSettings
+246
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+22
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_084_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+247
+Int32
+Position
+4
+TypeRef:9
+ViewSettings
+248
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+23
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_085_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+249
+Int32
+Position
+5
+TypeRef:9
+ViewSettings
+250
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+24
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_086_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+251
+Int32
+Position
+6
+TypeRef:9
+ViewSettings
+252
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+25
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_087_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+253
+Int32
+Position
+7
+TypeRef:9
+ViewSettings
+254
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+26
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_088_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+255
+Int32
+Position
+8
+TypeRef:9
+ViewSettings
+256
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+27
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_089_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+257
+Int32
+Position
+9
+TypeRef:9
+ViewSettings
+258
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+28
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_090_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+259
+Int32
+Position
+10
+TypeRef:9
+ViewSettings
+260
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+29
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_091_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+261
+Int32
+Position
+11
+TypeRef:9
+ViewSettings
+262
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+30
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_092_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+263
+Int32
+Position
+12
+TypeRef:9
+ViewSettings
+264
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+31
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_093_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+265
+Int32
+Position
+13
+TypeRef:9
+ViewSettings
+266
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+32
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_094_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+267
+Int32
+Position
+14
+TypeRef:9
+ViewSettings
+268
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+33
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_095_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+269
+Int32
+Position
+15
+TypeRef:9
+ViewSettings
+270
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+34
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_096_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+271
+Int32
+Position
+16
+TypeRef:9
+ViewSettings
+272
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+35
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_097_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+273
+Int32
+Position
+17
+TypeRef:9
+ViewSettings
+274
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+36
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_098_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+275
+Int32
+Position
+18
+TypeRef:9
+ViewSettings
+276
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+37
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_099_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+277
+Int32
+Position
+19
+TypeRef:9
+ViewSettings
+278
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+38
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_100_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+279
+Int32
+Position
+20
+TypeRef:9
+ViewSettings
+280
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+39
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_101_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+281
+Int32
+Position
+21
+TypeRef:9
+ViewSettings
+282
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+40
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_102_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+283
+Int32
+Position
+22
+TypeRef:9
+ViewSettings
+284
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+41
+String
+Identifier
+1
+CAN-T::CANT::::TEM_1_GENERAL_BROADCAST::TEM_1_therm_103_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+285
+Int32
+Position
+23
+TypeRef:9
+ViewSettings
+286
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+42
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_160_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+287
+Int32
+Position
+24
+TypeRef:9
+ViewSettings
+288
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+43
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_161_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+289
+Int32
+Position
+25
+TypeRef:9
+ViewSettings
+290
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+44
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_162_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+291
+Int32
+Position
+26
+TypeRef:9
+ViewSettings
+292
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+45
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_163_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+293
+Int32
+Position
+27
+TypeRef:9
+ViewSettings
+294
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+46
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_164_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+295
+Int32
+Position
+28
+TypeRef:9
+ViewSettings
+296
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+47
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_165_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+297
+Int32
+Position
+29
+TypeRef:9
+ViewSettings
+298
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+48
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_166_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+299
+Int32
+Position
+30
+TypeRef:9
+ViewSettings
+300
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+49
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_167_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+301
+Int32
+Position
+31
+TypeRef:9
+ViewSettings
+302
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+50
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_168_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+303
+Int32
+Position
+32
+TypeRef:9
+ViewSettings
+304
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+51
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_169_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+305
+Int32
+Position
+33
+TypeRef:9
+ViewSettings
+306
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+52
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_170_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+307
+Int32
+Position
+34
+TypeRef:9
+ViewSettings
+308
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+53
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_171_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+309
+Int32
+Position
+35
+TypeRef:9
+ViewSettings
+310
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+54
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_172_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+311
+Int32
+Position
+36
+TypeRef:9
+ViewSettings
+312
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+55
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_173_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+313
+Int32
+Position
+37
+TypeRef:9
+ViewSettings
+314
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+56
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_174_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+315
+Int32
+Position
+38
+TypeRef:9
+ViewSettings
+316
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+57
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_175_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+317
+Int32
+Position
+39
+TypeRef:9
+ViewSettings
+318
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+58
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_176_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+319
+Int32
+Position
+40
+TypeRef:9
+ViewSettings
+320
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+59
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_177_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+321
+Int32
+Position
+41
+TypeRef:9
+ViewSettings
+322
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+60
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_178_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+323
+Int32
+Position
+42
+TypeRef:9
+ViewSettings
+324
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+61
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_179_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+325
+Int32
+Position
+43
+TypeRef:9
+ViewSettings
+326
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+62
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_180_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+327
+Int32
+Position
+44
+TypeRef:9
+ViewSettings
+328
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+63
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_181_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+329
+Int32
+Position
+45
+TypeRef:9
+ViewSettings
+330
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+64
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_182_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+331
+Int32
+Position
+46
+TypeRef:9
+ViewSettings
+332
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+65
+String
+Identifier
+1
+CAN-T::CANT::::TEM_2_GENERAL_BROADCAST::TEM_2_therm_183_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+333
+Int32
+Position
+47
+TypeRef:9
+ViewSettings
+334
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+66
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_000_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+335
+Int32
+Position
+48
+TypeRef:9
+ViewSettings
+336
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+67
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_001_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+337
+Int32
+Position
+49
+TypeRef:9
+ViewSettings
+338
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+68
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_002_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+339
+Int32
+Position
+50
+TypeRef:9
+ViewSettings
+340
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+69
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_003_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+341
+Int32
+Position
+51
+TypeRef:9
+ViewSettings
+342
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+70
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_004_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+343
+Int32
+Position
+52
+TypeRef:9
+ViewSettings
+344
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+71
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_005_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+345
+Int32
+Position
+53
+TypeRef:9
+ViewSettings
+346
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+72
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_006_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+347
+Int32
+Position
+54
+TypeRef:9
+ViewSettings
+348
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+73
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_007_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+349
+Int32
+Position
+55
+TypeRef:9
+ViewSettings
+350
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+74
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_240_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+351
+Int32
+Position
+56
+TypeRef:9
+ViewSettings
+352
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+75
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_241_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+353
+Int32
+Position
+57
+TypeRef:9
+ViewSettings
+354
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+76
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_242_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+355
+Int32
+Position
+58
+TypeRef:9
+ViewSettings
+356
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+77
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_243_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+357
+Int32
+Position
+59
+TypeRef:9
+ViewSettings
+358
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+78
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_244_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+359
+Int32
+Position
+60
+TypeRef:9
+ViewSettings
+360
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+79
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_245_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+361
+Int32
+Position
+61
+TypeRef:9
+ViewSettings
+362
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+80
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_246_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+363
+Int32
+Position
+62
+TypeRef:9
+ViewSettings
+364
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+81
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_247_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+365
+Int32
+Position
+63
+TypeRef:9
+ViewSettings
+366
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+82
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_248_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+367
+Int32
+Position
+64
+TypeRef:9
+ViewSettings
+368
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+83
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_249_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+369
+Int32
+Position
+65
+TypeRef:9
+ViewSettings
+370
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+84
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_250_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+371
+Int32
+Position
+66
+TypeRef:9
+ViewSettings
+372
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+85
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_251_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+373
+Int32
+Position
+67
+TypeRef:9
+ViewSettings
+374
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+86
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_252_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+375
+Int32
+Position
+68
+TypeRef:9
+ViewSettings
+376
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+87
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_253_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+377
+Int32
+Position
+69
+TypeRef:9
+ViewSettings
+378
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+88
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_254_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+379
+Int32
+Position
+70
+TypeRef:9
+ViewSettings
+380
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+89
+String
+Identifier
+1
+CAN-T::CANT::::TEM_3_GENERAL_BROADCAST::TEM_3_therm_255_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+381
+Int32
+Position
+71
+TypeRef:9
+ViewSettings
+382
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+90
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_064_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+383
+Int32
+Position
+72
+TypeRef:9
+ViewSettings
+384
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+91
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_065_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+385
+Int32
+Position
+73
+TypeRef:9
+ViewSettings
+386
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+92
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_066_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+387
+Int32
+Position
+74
+TypeRef:9
+ViewSettings
+388
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+93
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_067_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+389
+Int32
+Position
+75
+TypeRef:9
+ViewSettings
+390
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+94
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_068_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+391
+Int32
+Position
+76
+TypeRef:9
+ViewSettings
+392
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+95
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_069_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+393
+Int32
+Position
+77
+TypeRef:9
+ViewSettings
+394
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+96
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_070_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+395
+Int32
+Position
+78
+TypeRef:9
+ViewSettings
+396
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+97
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_071_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+397
+Int32
+Position
+79
+TypeRef:9
+ViewSettings
+398
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+98
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_072_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+399
+Int32
+Position
+80
+TypeRef:9
+ViewSettings
+400
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+99
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_073_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+401
+Int32
+Position
+81
+TypeRef:9
+ViewSettings
+402
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+100
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_074_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+403
+Int32
+Position
+82
+TypeRef:9
+ViewSettings
+404
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+101
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_075_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+405
+Int32
+Position
+83
+TypeRef:9
+ViewSettings
+406
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+102
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_076_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+407
+Int32
+Position
+84
+TypeRef:9
+ViewSettings
+408
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+103
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_077_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+409
+Int32
+Position
+85
+TypeRef:9
+ViewSettings
+410
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+104
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_078_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+411
+Int32
+Position
+86
+TypeRef:9
+ViewSettings
+412
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+105
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_079_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+413
+Int32
+Position
+87
+TypeRef:9
+ViewSettings
+414
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+106
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_080_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+415
+Int32
+Position
+88
+TypeRef:9
+ViewSettings
+416
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+107
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_081_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+417
+Int32
+Position
+89
+TypeRef:9
+ViewSettings
+418
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+108
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_082_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+419
+Int32
+Position
+90
+TypeRef:9
+ViewSettings
+420
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+109
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_083_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+421
+Int32
+Position
+91
+TypeRef:9
+ViewSettings
+422
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+110
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_084_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+423
+Int32
+Position
+92
+TypeRef:9
+ViewSettings
+424
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+111
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_085_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+425
+Int32
+Position
+93
+TypeRef:9
+ViewSettings
+426
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+112
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_086_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+427
+Int32
+Position
+94
+TypeRef:9
+ViewSettings
+428
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+113
+String
+Identifier
+1
+CAN-T::CANT::::TEM_4_GENERAL_BROADCAST::TEM_4_therm_087_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+429
+Int32
+Position
+95
+TypeRef:9
+ViewSettings
+430
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+114
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_144_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+431
+Int32
+Position
+96
+TypeRef:9
+ViewSettings
+432
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+115
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_145_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+433
+Int32
+Position
+97
+TypeRef:9
+ViewSettings
+434
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+116
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_146_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+435
+Int32
+Position
+98
+TypeRef:9
+ViewSettings
+436
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+117
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_147_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+437
+Int32
+Position
+99
+TypeRef:9
+ViewSettings
+438
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+118
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_148_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+439
+Int32
+Position
+100
+TypeRef:9
+ViewSettings
+440
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+119
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_149_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+441
+Int32
+Position
+101
+TypeRef:9
+ViewSettings
+442
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+120
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_150_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+443
+Int32
+Position
+102
+TypeRef:9
+ViewSettings
+444
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+121
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_151_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+445
+Int32
+Position
+103
+TypeRef:9
+ViewSettings
+446
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+122
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_152_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+447
+Int32
+Position
+104
+TypeRef:9
+ViewSettings
+448
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+123
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_153_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+449
+Int32
+Position
+105
+TypeRef:9
+ViewSettings
+450
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+124
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_154_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+451
+Int32
+Position
+106
+TypeRef:9
+ViewSettings
+452
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+125
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_155_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+453
+Int32
+Position
+107
+TypeRef:9
+ViewSettings
+454
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+126
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_156_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+455
+Int32
+Position
+108
+TypeRef:9
+ViewSettings
+456
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+127
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_157_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+457
+Int32
+Position
+109
+TypeRef:9
+ViewSettings
+458
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+128
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_158_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+459
+Int32
+Position
+110
+TypeRef:9
+ViewSettings
+460
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+129
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_159_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+461
+Int32
+Position
+111
+TypeRef:9
+ViewSettings
+462
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+130
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_160_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+463
+Int32
+Position
+112
+TypeRef:9
+ViewSettings
+464
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+131
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_161_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+465
+Int32
+Position
+113
+TypeRef:9
+ViewSettings
+466
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+132
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_162_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+467
+Int32
+Position
+114
+TypeRef:9
+ViewSettings
+468
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+133
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_163_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+469
+Int32
+Position
+115
+TypeRef:9
+ViewSettings
+470
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+134
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_164_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+471
+Int32
+Position
+116
+TypeRef:9
+ViewSettings
+472
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+135
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_165_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+473
+Int32
+Position
+117
+TypeRef:9
+ViewSettings
+474
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+136
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_166_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+475
+Int32
+Position
+118
+TypeRef:9
+ViewSettings
+476
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+137
+String
+Identifier
+1
+CAN-T::CANT::::TEM_5_GENERAL_BROADCAST::TEM_5_therm_167_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+477
+Int32
+Position
+119
+TypeRef:9
+ViewSettings
+478
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+138
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_224_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+479
+Int32
+Position
+120
+TypeRef:9
+ViewSettings
+480
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+139
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_225_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+481
+Int32
+Position
+121
+TypeRef:9
+ViewSettings
+482
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+140
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_226_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+483
+Int32
+Position
+122
+TypeRef:9
+ViewSettings
+484
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+141
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_227_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+485
+Int32
+Position
+123
+TypeRef:9
+ViewSettings
+486
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+142
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_228_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+487
+Int32
+Position
+124
+TypeRef:9
+ViewSettings
+488
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+143
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_229_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+489
+Int32
+Position
+125
+TypeRef:9
+ViewSettings
+490
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+144
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_230_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+491
+Int32
+Position
+126
+TypeRef:9
+ViewSettings
+492
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+145
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_231_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+493
+Int32
+Position
+127
+TypeRef:9
+ViewSettings
+494
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+146
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_232_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+495
+Int32
+Position
+128
+TypeRef:9
+ViewSettings
+496
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+147
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_233_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+497
+Int32
+Position
+129
+TypeRef:9
+ViewSettings
+498
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+148
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_234_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+499
+Int32
+Position
+130
+TypeRef:9
+ViewSettings
+500
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+149
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_235_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+501
+Int32
+Position
+131
+TypeRef:9
+ViewSettings
+502
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+150
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_236_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+503
+Int32
+Position
+132
+TypeRef:9
+ViewSettings
+504
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+151
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_237_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+505
+Int32
+Position
+133
+TypeRef:9
+ViewSettings
+506
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+152
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_238_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+507
+Int32
+Position
+134
+TypeRef:9
+ViewSettings
+508
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+153
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_239_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+509
+Int32
+Position
+135
+TypeRef:9
+ViewSettings
+510
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+154
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_240_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+511
+Int32
+Position
+136
+TypeRef:9
+ViewSettings
+512
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+155
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_241_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+513
+Int32
+Position
+137
+TypeRef:9
+ViewSettings
+514
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+156
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_242_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+515
+Int32
+Position
+138
+TypeRef:9
+ViewSettings
+516
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+157
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_243_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+517
+Int32
+Position
+139
+TypeRef:9
+ViewSettings
+518
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+158
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_244_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+519
+Int32
+Position
+140
+TypeRef:9
+ViewSettings
+520
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+159
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_245_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+521
+Int32
+Position
+141
+TypeRef:9
+ViewSettings
+522
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+160
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_246_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+523
+Int32
+Position
+142
+TypeRef:9
+ViewSettings
+524
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+161
+String
+Identifier
+1
+CAN-T::CANT::::TEM_6_GENERAL_BROADCAST::TEM_6_therm_247_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+525
+Int32
+Position
+143
+TypeRef:9
+ViewSettings
+526
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+162
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_048_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+527
+Int32
+Position
+144
+TypeRef:9
+ViewSettings
+528
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+163
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_049_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+529
+Int32
+Position
+145
+TypeRef:9
+ViewSettings
+530
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+164
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_050_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+531
+Int32
+Position
+146
+TypeRef:9
+ViewSettings
+532
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+165
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_051_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+533
+Int32
+Position
+147
+TypeRef:9
+ViewSettings
+534
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+166
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_052_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+535
+Int32
+Position
+148
+TypeRef:9
+ViewSettings
+536
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+167
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_053_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+537
+Int32
+Position
+149
+TypeRef:9
+ViewSettings
+538
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+168
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_054_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+539
+Int32
+Position
+150
+TypeRef:9
+ViewSettings
+540
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+169
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_055_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+541
+Int32
+Position
+151
+TypeRef:9
+ViewSettings
+542
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+170
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_056_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+543
+Int32
+Position
+152
+TypeRef:9
+ViewSettings
+544
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+171
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_057_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+545
+Int32
+Position
+153
+TypeRef:9
+ViewSettings
+546
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+172
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_058_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+547
+Int32
+Position
+154
+TypeRef:9
+ViewSettings
+548
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+173
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_059_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+549
+Int32
+Position
+155
+TypeRef:9
+ViewSettings
+550
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+174
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_060_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+551
+Int32
+Position
+156
+TypeRef:9
+ViewSettings
+552
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+175
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_061_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+553
+Int32
+Position
+157
+TypeRef:9
+ViewSettings
+554
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+176
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_062_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+555
+Int32
+Position
+158
+TypeRef:9
+ViewSettings
+556
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+177
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_063_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+557
+Int32
+Position
+159
+TypeRef:9
+ViewSettings
+558
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+178
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_064_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+559
+Int32
+Position
+160
+TypeRef:9
+ViewSettings
+560
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+179
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_065_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+561
+Int32
+Position
+161
+TypeRef:9
+ViewSettings
+562
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+180
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_066_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+563
+Int32
+Position
+162
+TypeRef:9
+ViewSettings
+564
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+181
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_067_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+565
+Int32
+Position
+163
+TypeRef:9
+ViewSettings
+566
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+182
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_068_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+567
+Int32
+Position
+164
+TypeRef:9
+ViewSettings
+568
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+183
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_069_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+569
+Int32
+Position
+165
+TypeRef:9
+ViewSettings
+570
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+184
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_070_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+571
+Int32
+Position
+166
+TypeRef:9
+ViewSettings
+572
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+185
+String
+Identifier
+1
+CAN-T::CANT::::TEM_7_GENERAL_BROADCAST::TEM_7_therm_071_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+573
+Int32
+Position
+167
+TypeRef:9
+ViewSettings
+574
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+186
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_128_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+575
+Int32
+Position
+168
+TypeRef:9
+ViewSettings
+576
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+187
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_129_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+577
+Int32
+Position
+169
+TypeRef:9
+ViewSettings
+578
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+188
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_130_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+579
+Int32
+Position
+170
+TypeRef:9
+ViewSettings
+580
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+189
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_131_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+581
+Int32
+Position
+171
+TypeRef:9
+ViewSettings
+582
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+190
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_132_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+583
+Int32
+Position
+172
+TypeRef:9
+ViewSettings
+584
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+191
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_133_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+585
+Int32
+Position
+173
+TypeRef:9
+ViewSettings
+586
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+192
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_134_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+587
+Int32
+Position
+174
+TypeRef:9
+ViewSettings
+588
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+193
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_135_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+589
+Int32
+Position
+175
+TypeRef:9
+ViewSettings
+590
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+194
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_136_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+591
+Int32
+Position
+176
+TypeRef:9
+ViewSettings
+592
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+195
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_137_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+593
+Int32
+Position
+177
+TypeRef:9
+ViewSettings
+594
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+196
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_138_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+595
+Int32
+Position
+178
+TypeRef:9
+ViewSettings
+596
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+197
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_139_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+597
+Int32
+Position
+179
+TypeRef:9
+ViewSettings
+598
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+198
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_140_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+599
+Int32
+Position
+180
+TypeRef:9
+ViewSettings
+600
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+199
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_141_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+601
+Int32
+Position
+181
+TypeRef:9
+ViewSettings
+602
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+200
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_142_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+603
+Int32
+Position
+182
+TypeRef:9
+ViewSettings
+604
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+201
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_143_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+605
+Int32
+Position
+183
+TypeRef:9
+ViewSettings
+606
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+202
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_144_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+607
+Int32
+Position
+184
+TypeRef:9
+ViewSettings
+608
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+203
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_145_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+609
+Int32
+Position
+185
+TypeRef:9
+ViewSettings
+610
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+204
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_146_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+611
+Int32
+Position
+186
+TypeRef:9
+ViewSettings
+612
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+205
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_147_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+613
+Int32
+Position
+187
+TypeRef:9
+ViewSettings
+614
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+206
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_148_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+615
+Int32
+Position
+188
+TypeRef:9
+ViewSettings
+616
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+207
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_149_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+617
+Int32
+Position
+189
+TypeRef:9
+ViewSettings
+618
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+208
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_150_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+619
+Int32
+Position
+190
+TypeRef:9
+ViewSettings
+620
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+209
+String
+Identifier
+1
+CAN-T::CANT::::TEM_8_GENERAL_BROADCAST::TEM_8_therm_151_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+621
+Int32
+Position
+191
+TypeRef:9
+ViewSettings
+622
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+210
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_208_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+623
+Int32
+Position
+192
+TypeRef:9
+ViewSettings
+624
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+211
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_209_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+625
+Int32
+Position
+193
+TypeRef:9
+ViewSettings
+626
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+212
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_210_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+627
+Int32
+Position
+194
+TypeRef:9
+ViewSettings
+628
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+213
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_211_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+629
+Int32
+Position
+195
+TypeRef:9
+ViewSettings
+630
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+214
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_212_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+631
+Int32
+Position
+196
+TypeRef:9
+ViewSettings
+632
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+215
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_213_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+633
+Int32
+Position
+197
+TypeRef:9
+ViewSettings
+634
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+216
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_214_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+635
+Int32
+Position
+198
+TypeRef:9
+ViewSettings
+636
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+217
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_215_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+637
+Int32
+Position
+199
+TypeRef:9
+ViewSettings
+638
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+218
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_216_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+639
+Int32
+Position
+200
+TypeRef:9
+ViewSettings
+640
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+219
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_217_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+641
+Int32
+Position
+201
+TypeRef:9
+ViewSettings
+642
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+220
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_218_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+643
+Int32
+Position
+202
+TypeRef:9
+ViewSettings
+644
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+221
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_219_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+645
+Int32
+Position
+203
+TypeRef:9
+ViewSettings
+646
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+222
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_220_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+647
+Int32
+Position
+204
+TypeRef:9
+ViewSettings
+648
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+223
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_221_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+649
+Int32
+Position
+205
+TypeRef:9
+ViewSettings
+650
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+224
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_222_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+651
+Int32
+Position
+206
+TypeRef:9
+ViewSettings
+652
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+225
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_223_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+653
+Int32
+Position
+207
+TypeRef:9
+ViewSettings
+654
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+226
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_224_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+655
+Int32
+Position
+208
+TypeRef:9
+ViewSettings
+656
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+227
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_225_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+657
+Int32
+Position
+209
+TypeRef:9
+ViewSettings
+658
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+228
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_226_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+659
+Int32
+Position
+210
+TypeRef:9
+ViewSettings
+660
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+229
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_227_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+661
+Int32
+Position
+211
+TypeRef:9
+ViewSettings
+662
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+230
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_228_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+663
+Int32
+Position
+212
+TypeRef:9
+ViewSettings
+664
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+231
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_229_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+665
+Int32
+Position
+213
+TypeRef:9
+ViewSettings
+666
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+232
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_230_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+667
+Int32
+Position
+214
+TypeRef:9
+ViewSettings
+668
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:4
+233
+String
+Identifier
+1
+CAN-T::CANT::::TEM_9_GENERAL_BROADCAST::TEM_9_therm_231_value
+Int32
+ObjectType
+0
+TypeRef:8
+Qualifier
+669
+Int32
+Position
+215
+TypeRef:9
+ViewSettings
+670
+Int32
+displayLevel
+0
+Int32
+NumSubItems
+0
+--TextFormatter: End of Object--
+TypeRef:5
+234
+Int32
+ID
+1
+String
+Name
+1
+Favorite 1
+Int32
+Color
+-13312
+TypeRef:7
+SerializationVersion
+671
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+0
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:6
+235
+Array
+_items
+672
+TypeRef:5
+1
+0
+3
+TypeRef:5
+ArrayElement
+673
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Object
+10
+ArrayElement
+0
+TypeRef:10
+ArrayElement
+0
+TypeRef:10
+ArrayElement
+0
+Int32
+_size
+1
+Int32
+_version
+1
+--TextFormatter: End of Object--
+TypeRef:8
+238
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_080_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+239
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+
+mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+System.Collections.Generic.List`1[[Vector.CANalyzer.Data.ConditionalFormattingRule, Vector.CANalyzer.Data, Version=19.5.44.0, Culture=neutral, PublicKeyToken=null]]
+11
+UserDefinedConditionalFormattingRules
+674
+TypeRef:5
+Favorite
+675
+TypeRef:10
+UserDefinedName
+0
+TypeRef:7
+SerializationVersion
+676
+UInt16
+mMajor
+1
+UInt16
+mMinor
+0
+UInt16
+mPatch
+7
+--TextFormatter: End of Object--
+--TextFormatter: End of Object--
+TypeRef:8
+241
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_081_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+242
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+677
+TypeRef:5
+Favorite
+678
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+243
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_082_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+244
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+679
+TypeRef:5
+Favorite
+680
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+245
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_083_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+246
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+681
+TypeRef:5
+Favorite
+682
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+247
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_084_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+248
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+683
+TypeRef:5
+Favorite
+684
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+249
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_085_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+250
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+685
+TypeRef:5
+Favorite
+686
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+251
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_086_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+252
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+687
+TypeRef:5
+Favorite
+688
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+253
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_087_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+254
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+689
+TypeRef:5
+Favorite
+690
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+255
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_088_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+256
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+691
+TypeRef:5
+Favorite
+692
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+257
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_089_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+258
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+693
+TypeRef:5
+Favorite
+694
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+259
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_090_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+260
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+695
+TypeRef:5
+Favorite
+696
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+261
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_091_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+262
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+697
+TypeRef:5
+Favorite
+698
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+263
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_092_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+264
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+699
+TypeRef:5
+Favorite
+700
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+265
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_093_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+266
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+701
+TypeRef:5
+Favorite
+702
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+267
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_094_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+268
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+703
+TypeRef:5
+Favorite
+704
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+269
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_095_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+270
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+705
+TypeRef:5
+Favorite
+706
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+271
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_096_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+272
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+707
+TypeRef:5
+Favorite
+708
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+273
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_097_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+274
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+709
+TypeRef:5
+Favorite
+710
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+275
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_098_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+276
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+711
+TypeRef:5
+Favorite
+712
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+277
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_099_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+278
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+713
+TypeRef:5
+Favorite
+714
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+279
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_100_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+280
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+715
+TypeRef:5
+Favorite
+716
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+281
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_101_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+282
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+717
+TypeRef:5
+Favorite
+718
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+283
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_102_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+284
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+719
+TypeRef:5
+Favorite
+720
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+285
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869185
+1
+1
+0
+0
+0
+TEM_1_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_1_therm_103_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098111
+TEM_1_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+286
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+721
+TypeRef:5
+Favorite
+722
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+287
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_160_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+288
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+723
+TypeRef:5
+Favorite
+724
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+289
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_161_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+290
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+725
+TypeRef:5
+Favorite
+726
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+291
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_162_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+292
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+727
+TypeRef:5
+Favorite
+728
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+293
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_163_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+294
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+729
+TypeRef:5
+Favorite
+730
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+295
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_164_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+296
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+731
+TypeRef:5
+Favorite
+732
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+297
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_165_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+298
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+733
+TypeRef:5
+Favorite
+734
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+299
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_166_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+300
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+735
+TypeRef:5
+Favorite
+736
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+301
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_167_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+302
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+737
+TypeRef:5
+Favorite
+738
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+303
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_168_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+304
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+739
+TypeRef:5
+Favorite
+740
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+305
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_169_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+306
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+741
+TypeRef:5
+Favorite
+742
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+307
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_170_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+308
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+743
+TypeRef:5
+Favorite
+744
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+309
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_171_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+310
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+745
+TypeRef:5
+Favorite
+746
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+311
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_172_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+312
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+747
+TypeRef:5
+Favorite
+748
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+313
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_173_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+314
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+749
+TypeRef:5
+Favorite
+750
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+315
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_174_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+316
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+751
+TypeRef:5
+Favorite
+752
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+317
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_175_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+318
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+753
+TypeRef:5
+Favorite
+754
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+319
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_176_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+320
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+755
+TypeRef:5
+Favorite
+756
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+321
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_177_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+322
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+757
+TypeRef:5
+Favorite
+758
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+323
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_178_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+324
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+759
+TypeRef:5
+Favorite
+760
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+325
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_179_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+326
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+761
+TypeRef:5
+Favorite
+762
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+327
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_180_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+328
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+763
+TypeRef:5
+Favorite
+764
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+329
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_181_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+330
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+765
+TypeRef:5
+Favorite
+766
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+331
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_182_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+332
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+767
+TypeRef:5
+Favorite
+768
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+333
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869186
+1
+1
+0
+0
+0
+TEM_2_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_2_therm_183_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098110
+TEM_2_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+334
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+769
+TypeRef:5
+Favorite
+770
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+335
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_000_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+336
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+771
+TypeRef:5
+Favorite
+772
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+337
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_001_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+338
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+773
+TypeRef:5
+Favorite
+774
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+339
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_002_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+340
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+775
+TypeRef:5
+Favorite
+776
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+341
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_003_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+342
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+777
+TypeRef:5
+Favorite
+778
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+343
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_004_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+344
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+779
+TypeRef:5
+Favorite
+780
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+345
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_005_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+346
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+781
+TypeRef:5
+Favorite
+782
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+347
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_006_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+348
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+783
+TypeRef:5
+Favorite
+784
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+349
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_007_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+350
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+785
+TypeRef:5
+Favorite
+786
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+351
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_240_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+352
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+787
+TypeRef:5
+Favorite
+788
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+353
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_241_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+354
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+789
+TypeRef:5
+Favorite
+790
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+355
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_242_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+356
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+791
+TypeRef:5
+Favorite
+792
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+357
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_243_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+358
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+793
+TypeRef:5
+Favorite
+794
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+359
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_244_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+360
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+795
+TypeRef:5
+Favorite
+796
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+361
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_245_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+362
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+797
+TypeRef:5
+Favorite
+798
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+363
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_246_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+364
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+799
+TypeRef:5
+Favorite
+800
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+365
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_247_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+366
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+801
+TypeRef:5
+Favorite
+802
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+367
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_248_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+368
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+803
+TypeRef:5
+Favorite
+804
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+369
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_249_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+370
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+805
+TypeRef:5
+Favorite
+806
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+371
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_250_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+372
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+807
+TypeRef:5
+Favorite
+808
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+373
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_251_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+374
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+809
+TypeRef:5
+Favorite
+810
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+375
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_252_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+376
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+811
+TypeRef:5
+Favorite
+812
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+377
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_253_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+378
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+813
+TypeRef:5
+Favorite
+814
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+379
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_254_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+380
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+815
+TypeRef:5
+Favorite
+816
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+381
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869187
+1
+1
+0
+0
+0
+TEM_3_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_3_therm_255_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098109
+TEM_3_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+382
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+817
+TypeRef:5
+Favorite
+818
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+383
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869188
+1
+1
+0
+0
+0
+TEM_4_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_4_therm_064_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098108
+TEM_4_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+384
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+819
+TypeRef:5
+Favorite
+820
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+385
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869188
+1
+1
+0
+0
+0
+TEM_4_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_4_therm_065_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098108
+TEM_4_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+386
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+821
+TypeRef:5
+Favorite
+822
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+387
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869188
+1
+1
+0
+0
+0
+TEM_4_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_4_therm_066_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098108
+TEM_4_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+388
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+823
+TypeRef:5
+Favorite
+824
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+389
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869188
+1
+1
+0
+0
+0
+TEM_4_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_4_therm_067_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098108
+TEM_4_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+390
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+825
+TypeRef:5
+Favorite
+826
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+391
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869188
+1
+1
+0
+0
+0
+TEM_4_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_4_therm_068_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098108
+TEM_4_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+392
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+827
+TypeRef:5
+Favorite
+828
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+393
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19 Begin_Of_Object
+1
+ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20 Begin_Of_Object
+1
+VConfigCANFrame 21 Begin_Of_Object
+5
+VConfigMessage 22 Begin_Of_Object
+5
+VConfigBusObject 23 Begin_Of_Object
+1
+VConfigBusEvent 24 Begin_Of_Object
+1
+VConfigEvent 25 Begin_Of_Object
+1
+End_Of_Object VConfigEvent 25
+1
+1
+End_Of_Object VConfigBusEvent 24
+End_Of_Object VConfigBusObject 23
+31
+1
+VDatabaseBusMessageId 23 Begin_Of_Object
+3
+2553869188
+1
+1
+0
+0
+0
+TEM_4_GENERAL_BROADCAST
+0
+CANT
+0
+1
+End_Of_Object VDatabaseBusMessageId 23
+NULL
+0
+0
+0
+End_Of_Object VConfigMessage 22
+End_Of_Object VConfigCANFrame 21
+End_Of_Object ValueObjectConfiguration::Detail::AbstractConfiguredValueObject 20
+End_Of_Object ValueObjectConfiguration::Detail::VConfiguredValueObjectBase 19
+TEM_4_therm_069_value
+1
+1
+1
+CAN-T
+CANT
+
+-1741098108
+TEM_4_GENERAL_BROADCAST
+0
+4294967295
+End_Of_Object ValueObjectConfiguration::VConfiguredDBSignal 18
+
+--TextFormatter: End of Object--
+TypeRef:9
+394
+Int32
+PhysRepresentation
+1
+Int32
+RawRepresentation
+1
+Int32
+PhysDecimalPlaces
+2
+Int32
+RawDecimalPlaces
+2
+Int32
+TextColor
+-16777216
+Boolean
+Expanded
+False
+TypeRef:10
+FilterConfiguration
+0
+Boolean
+IsFilterEnabled
+True
+Boolean
+IsFilterConfigured
+False
+Boolean
+UserDefinedConditionalFormattingEnabled
+True
+TypeRef:11
+UserDefinedConditionalFormattingRules
+829
+TypeRef:5
+Favorite
+830
+TypeRef:10
+UserDefinedName
+0
+--TextFormatter: End of Object--
+TypeRef:8
+395
+String
+mNativeObject
+58
+ValueObjectConfiguration::VConfiguredDBSignal 18 Begin_Of_Object
+4
+ValueObjectConfiguration::Detail::VConfiguredValueObjectBase