From 5d19466fdccd88ca6ff1e6d375eda7bc63c74205 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Wed, 10 Mar 2021 13:03:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0`CandlestickChart`K=E7=BA=BF?= =?UTF-8?q?=E5=9B=BE=20#124?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/CHANGELOG-EN.md | 1 + Assets/XCharts/CHANGELOG.md | 1 + .../Documentation/XCharts配置项手册.md | 30 +- .../Documentation/xcharts-configuration-EN.md | 38 +- .../XCharts/Editor/CandlestickChartEditor.cs | 24 + .../Editor/CandlestickChartEditor.cs.meta | 11 + .../PropertyDrawers/ComponentThemeDrawer.cs | 5 + .../Editor/PropertyDrawers/ItemStyleDrawer.cs | 2 + .../Editor/PropertyDrawers/SerieDrawer.cs | 16 +- Assets/XCharts/Editor/XChartEditor.cs | 7 + .../Examples/Runtime/Example90_Candlestick.cs | 75 + .../Runtime/Example90_Candlestick.cs.meta | 11 + Assets/XCharts/Runtime/API/BaseChart_API.cs | 14 + Assets/XCharts/Runtime/CandlestickChart.cs | 36 + .../XCharts/Runtime/CandlestickChart.cs.meta | 11 + .../XCharts/Runtime/Component/Main/Serie.cs | 22 + .../XCharts/Runtime/Component/Main/Series.cs | 30 + .../Runtime/Component/Sub/ItemStyle.cs | 55 + .../Runtime/Component/Sub/SerieData.cs | 28 +- .../Runtime/Component/Theme/SerieTheme.cs | 73 + .../Runtime/Internal/CoordinateChart.cs | 5 +- .../Internal/CoordinateChart_DrawBar.cs | 8 +- .../CoordinateChart_DrawCandlestick.cs | 150 + .../CoordinateChart_DrawCandlestick.cs.meta | 11 + .../Runtime/Internal/Helper/SeriesHelper.cs | 26 +- .../Runtime/Internal/Helper/TooltipHelper.cs | 23 +- .../XCharts/Runtime/Template/SerieTemplate.cs | 15 + Assets/XCharts/Runtime/XChartsSettings.cs | 2 + Assets/XChartsDemo/xcharts_demo.unity | 267778 ++++++++++++++- 29 files changed, 268479 insertions(+), 29 deletions(-) create mode 100644 Assets/XCharts/Editor/CandlestickChartEditor.cs create mode 100644 Assets/XCharts/Editor/CandlestickChartEditor.cs.meta create mode 100644 Assets/XCharts/Examples/Runtime/Example90_Candlestick.cs create mode 100644 Assets/XCharts/Examples/Runtime/Example90_Candlestick.cs.meta create mode 100644 Assets/XCharts/Runtime/CandlestickChart.cs create mode 100644 Assets/XCharts/Runtime/CandlestickChart.cs.meta create mode 100644 Assets/XCharts/Runtime/Internal/CoordinateChart_DrawCandlestick.cs create mode 100644 Assets/XCharts/Runtime/Internal/CoordinateChart_DrawCandlestick.cs.meta diff --git a/Assets/XCharts/CHANGELOG-EN.md b/Assets/XCharts/CHANGELOG-EN.md index 93be7516..27f01f9d 100644 --- a/Assets/XCharts/CHANGELOG-EN.md +++ b/Assets/XCharts/CHANGELOG-EN.md @@ -32,6 +32,7 @@ ## Latest +* (2021.03.10) Added `CandlestickChart` #124 * (2021.03.06) Added `PieChart`'s `minAngle` parameter to support setting minimum sector angle #117 * (2021.03.05) Added support for `Legend` for several built-in ICONS #90 * (2021.03.02) Added `DataRoom` support for value axes #71 diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md index 908b5446..252979e1 100644 --- a/Assets/XCharts/CHANGELOG.md +++ b/Assets/XCharts/CHANGELOG.md @@ -32,6 +32,7 @@ ## Latest +* (2021.03.10) 增加`CandlestickChart`K线图 #124 * (2021.03.06) 增加`PieChart`的`minAngle`参数支持设置最小扇区角度 #117 * (2021.03.05) 增加`Legend`几种内置图标的支持 #90 * (2021.03.02) 增加`DataZoom`对数值轴的支持 #71 diff --git a/Assets/XCharts/Documentation/XCharts配置项手册.md b/Assets/XCharts/Documentation/XCharts配置项手册.md index 64550219..70cfeb9f 100644 --- a/Assets/XCharts/Documentation/XCharts配置项手册.md +++ b/Assets/XCharts/Documentation/XCharts配置项手册.md @@ -23,6 +23,7 @@ * [Serie-Gauge 仪表盘](#Serie-Gauge) * [Serie-Ring 环形图](#Serie-Ring) * [Serie-Liquid 水位图](#Serie-Liquid) +* [Serie-Candlestick K线图](#Serie-Candlestick) * [Settings 设置](#Settings) * [Theme 主题](#Theme) * [Tooltip 提示框](#Tooltip) @@ -750,6 +751,29 @@ * `animation`:起始动画 [SerieAnimation](#SerieAnimation)。 * `data`:系列中的数据项 [SerieData](#SerieData) 数组,可以设置`1`到`n`维数据。水位图的数据一般只有一个,表示当前水位值,用`max`设置最大水位值。 +## `Serie-Candlestick` + +K线图系列。 + +* `show`:系列是否显示在图表上。 +* `type`:`Candlestick`。 +* `name`:系列名称。用于 `tooltip` 的显示,`legend` 的图例筛选。 +* `xAxisIndex`:使用的坐标轴X轴的 `index`,在单个图表实例中存在多个坐标轴的时候有用。 +* `yAxisIndex`:使用的坐标轴Y轴的 `index`,在单个图表实例中存在多个坐标轴的时候有用。 +* `minShow`:系列显示数据的最小索引。 +* `maxShow`:系列显示数据的最大索引。 +* `maxCache`:系列中可缓存的最大数据量。默认为`0`没有限制,大于0时超过指定值会移除旧数据再插入新数据。 +* `clip`:是否裁剪超出坐标系部分的图形。 +* `ignore`:是否开启忽略数据。当为 `true` 时,数据值为 `ignoreValue` 时不进行绘制。 +* `ignoreValue`:忽略数据的默认值。默认值默认为0,当 `ignore` 为 `true` 才有效。 +* `showAsPositiveNumber`:将负数数值显示为正数。一般和`AxisLabel`的`showAsPositiveNumber`配合使用。仅在折线图和柱状图中有效。 +* `large`:是否开启大数据量优化,在数据图形特别多而出现卡顿时候可以开启。开启后配合 largeThreshold 在数据量大于指定阈值的时候对绘制进行优化。缺点:优化后不能自定义设置单个数据项的样式,不能显示Label,折线图不绘制Symbol。 +* `largeThreshold`:开启大数量优化的阈值。只有当开启了large并且数据量大于该阀值时才进入性能模式。 +* `itemStyle`:环形图的圆环样式,包括设置背景颜色和边框等 [ItemStyle](#ItemStyle)。 +* `emphasis`:高亮样式 [Emphasis](#Emphasis)。 +* `animation`:起始动画 [SerieAnimation](#SerieAnimation)。 +* `data`:系列中的数据项 [SerieData](#SerieData) 数组,K线图至少需要4个维度的数组`[open, close, lowest, highest]`。 + ## `Settings` 全局参数设置组件。一般情况下可使用默认值,当有需要时可进行调整。 @@ -846,7 +870,8 @@ ## `ItemStyle` * `show`:是否启用。 -* `color`:颜色。 +* `color`:颜色。对于K线图,对应阳线的颜色。 +* `color0`:颜色。对于K线图,对应阴线的颜色。 * `toColor`:渐变颜色1。 * `toColor2`:渐变颜色2。只在折线图中有效。 * `backgroundColor`:背景颜色。 @@ -854,7 +879,8 @@ * `centerColor`:中心区域的颜色。如环形图的中心区域。 * `centerGap`:中心区域的间隙。如环形图的中心区域于最内环的间隙。 * `borderType`:边框的类型。 -* `borderColor`:边框的颜色。 +* `borderColor`:边框的颜色。对于K线图,对应阳线的边框颜色。 +* `borderColor0`:边框的颜色。对于K线图,对应阴线的边框颜色。 * `borderWidth`:边框宽。 * `opacity`:透明度。 * `tooltipFormatter`:提示框单项的字符串模版格式器。具体配置参考`Tooltip`的`formatter`。 diff --git a/Assets/XCharts/Documentation/xcharts-configuration-EN.md b/Assets/XCharts/Documentation/xcharts-configuration-EN.md index 3dd77cdc..2d89fc0e 100644 --- a/Assets/XCharts/Documentation/xcharts-configuration-EN.md +++ b/Assets/XCharts/Documentation/xcharts-configuration-EN.md @@ -25,6 +25,7 @@ __Main component:__ * [Serie-Gauge](#Serie-Gauge) * [Serie-Ring](#Serie-Ring) * [Serie-Liquid](#Serie-Liquid) +* [Serie-Candlestick](#Serie-Candlestick) * [Settings](#Settings) * [Theme](#Theme) * [Title](#Title) @@ -643,6 +644,29 @@ Line chart serie. * `animation`: 起始动画 [SerieAnimation](#SerieAnimation)。 * `data`: 系列中的数据项 [SerieData](#SerieData) 数组,可以设置`1`到`n`维数据。水位图的数据一般只有一个,表示当前水位值,用`max`设置最大水位值。 +## `Serie-Candlestick` + +K线图系列。 + +* `show`:系列是否显示在图表上。 +* `type`:`Candlestick`。 +* `name`:系列名称。用于 `tooltip` 的显示,`legend` 的图例筛选。 +* `xAxisIndex`:使用的坐标轴X轴的 `index`,在单个图表实例中存在多个坐标轴的时候有用。 +* `yAxisIndex`:使用的坐标轴Y轴的 `index`,在单个图表实例中存在多个坐标轴的时候有用。 +* `minShow`:系列显示数据的最小索引。 +* `maxShow`:系列显示数据的最大索引。 +* `maxCache`:系列中可缓存的最大数据量。默认为`0`没有限制,大于0时超过指定值会移除旧数据再插入新数据。 +* `clip`:是否裁剪超出坐标系部分的图形。 +* `ignore`:是否开启忽略数据。当为 `true` 时,数据值为 `ignoreValue` 时不进行绘制。 +* `ignoreValue`:忽略数据的默认值。默认值默认为0,当 `ignore` 为 `true` 才有效。 +* `showAsPositiveNumber`:将负数数值显示为正数。一般和`AxisLabel`的`showAsPositiveNumber`配合使用。仅在折线图和柱状图中有效。 +* `large`:是否开启大数据量优化,在数据图形特别多而出现卡顿时候可以开启。开启后配合 largeThreshold 在数据量大于指定阈值的时候对绘制进行优化。缺点:优化后不能自定义设置单个数据项的样式,不能显示Label,折线图不绘制Symbol。 +* `largeThreshold`:开启大数量优化的阈值。只有当开启了large并且数据量大于该阀值时才进入性能模式。 +* `itemStyle`:环形图的圆环样式,包括设置背景颜色和边框等 [ItemStyle](#ItemStyle)。 +* `emphasis`:高亮样式 [Emphasis](#Emphasis)。 +* `animation`:起始动画 [SerieAnimation](#SerieAnimation)。 +* `data`:系列中的数据项 [SerieData](#SerieData) 数组,K线图至少需要4个维度的数组`[open, close, lowest, highest]`。 + ## `Settings` 全局参数设置组件。一般情况下可使用默认值,当有需要时可进行调整。 @@ -739,15 +763,17 @@ Line chart serie. ## `ItemStyle` * `show`: 是否启用。 -* `color`: 颜色。 -* `toColor`:gradient color1. -* `toColor2`:gradient color2. +* `color`: 颜色。对于K线图,对应阳线的颜色。 +* `color0`: 颜色。对于K线图,对应阴线的颜色。 +* `toColor`: 渐变颜色1。 +* `toColor2`: 渐变颜色2。只在折线图中有效。 * `backgroundColor`: 背景颜色。 * `backgroundWidth`: 背景的宽。 * `centerColor`: 中心区域的颜色。如环形图的中心区域。 * `centerGap`: 中心区域的间隙。如环形图的中心区域于最内环的间隙。 * `borderType`: 边框的类型。 -* `borderColor`: 边框的颜色。 +* `borderColor`: 边框的颜色。对于K线图,对应阳线的边框颜色。 +* `borderColor0`: 边框的颜色。对于K线图,对应阴线的边框颜色。 * `borderWidth`: 边框宽。 * `opacity`: 透明度。 * `tooltipFormatter`: 提示框单项的字符串模版格式器。具体配置参考`Tooltip`的`formatter`。 @@ -776,8 +802,8 @@ Line chart serie. * `DashDot`: 点划线。 * `DashDotDot`: 双点划线。 * `color`: 线条颜色。默认和 `serie` 一致。 -* `toColor`:线的渐变颜色(需要水平方向渐变时)。 -* `toColor2`:线的渐变颜色2(需要水平方向三个渐变色的渐变时)。 +* `toColor`: 线的渐变颜色(需要水平方向渐变时)。 +* `toColor2`: 线的渐变颜色2(需要水平方向三个渐变色的渐变时)。 * `width`: 线条宽。 * `opacity`: 线条的透明度。支持从 `0` 到 `1` 的数字,为 `0` 时不绘制该图形。 diff --git a/Assets/XCharts/Editor/CandlestickChartEditor.cs b/Assets/XCharts/Editor/CandlestickChartEditor.cs new file mode 100644 index 00000000..6d3c047f --- /dev/null +++ b/Assets/XCharts/Editor/CandlestickChartEditor.cs @@ -0,0 +1,24 @@ +/************************************************/ +/* */ +/* Copyright (c) 2018 - 2021 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/************************************************/ + +using UnityEditor; + +namespace XCharts +{ + /// + /// Editor class used to edit UI CandlestickChart. + /// + [CustomEditor(typeof(CandlestickChart), false)] + public class CandlestickChartEditor : CoordinateChartEditor + { + protected override void OnEnable() + { + base.OnEnable(); + m_Chart = (CandlestickChart)target; + } + } +} \ No newline at end of file diff --git a/Assets/XCharts/Editor/CandlestickChartEditor.cs.meta b/Assets/XCharts/Editor/CandlestickChartEditor.cs.meta new file mode 100644 index 00000000..d28d3852 --- /dev/null +++ b/Assets/XCharts/Editor/CandlestickChartEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1bc2ab7ace40d480e839052673b65a5d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Editor/PropertyDrawers/ComponentThemeDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/ComponentThemeDrawer.cs index 57e1bda4..e2eab097 100644 --- a/Assets/XCharts/Editor/PropertyDrawers/ComponentThemeDrawer.cs +++ b/Assets/XCharts/Editor/PropertyDrawers/ComponentThemeDrawer.cs @@ -179,6 +179,11 @@ namespace XCharts PropertyField(prop, "m_ScatterSymbolSelectedSize"); PropertyField(prop, "m_PieTooltipExtraRadius"); PropertyField(prop, "m_PieSelectedOffset"); + PropertyField(prop, "m_CandlestickColor"); + PropertyField(prop, "m_CandlestickColor0"); + PropertyField(prop, "m_CandlestickBorderColor"); + PropertyField(prop, "m_CandlestickBorderColor0"); + PropertyField(prop, "m_CandlestickBorderWidth"); --EditorGUI.indentLevel; } } diff --git a/Assets/XCharts/Editor/PropertyDrawers/ItemStyleDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/ItemStyleDrawer.cs index 5f6cc7c0..b1211965 100644 --- a/Assets/XCharts/Editor/PropertyDrawers/ItemStyleDrawer.cs +++ b/Assets/XCharts/Editor/PropertyDrawers/ItemStyleDrawer.cs @@ -22,6 +22,7 @@ namespace XCharts { ++EditorGUI.indentLevel; PropertyField(prop, "m_Color"); + PropertyField(prop, "m_Color0"); PropertyField(prop, "m_ToColor"); PropertyField(prop, "m_ToColor2"); PropertyField(prop, "m_BackgroundColor"); @@ -31,6 +32,7 @@ namespace XCharts PropertyField(prop, "m_BorderType"); PropertyField(prop, "m_BorderWidth"); PropertyField(prop, "m_BorderColor"); + PropertyField(prop, "m_BorderColor0"); PropertyField(prop, "m_Opacity"); PropertyField(prop, "m_TooltipFormatter"); PropertyField(prop, "m_NumericFormatter"); diff --git a/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs index 40e7d8a2..f2cbed49 100644 --- a/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs +++ b/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs @@ -182,9 +182,23 @@ namespace XCharts PropertyField(prop, "m_ItemStyle"); PropertyField(prop, "m_Label"); break; + case SerieType.Candlestick: + PropertyField(prop, "m_XAxisIndex"); + PropertyField(prop, "m_YAxisIndex"); + PropertyFieldLimitMin(prop, "m_MinShow", 0); + PropertyFieldLimitMin(prop, "m_MaxShow", 0); + PropertyFieldLimitMin(prop, "m_MaxCache", 0); + PropertyField(prop, "m_BarWidth"); + PropertyField(prop, "m_Clip"); + PropertyField(prop, "m_ShowAsPositiveNumber"); + PropertyField(prop, "m_Large"); + PropertyField(prop, "m_LargeThreshold"); + PropertyField(prop, "m_ItemStyle"); + PropertyField(prop, "m_Label"); + PropertyField(prop, "m_Emphasis"); + break; } PropertyField(prop, "m_Animation"); - //PropertyListField(prop, "m_Data"); DrawData(pos, prop, serieType, ref m_DrawRect); --EditorGUI.indentLevel; } diff --git a/Assets/XCharts/Editor/XChartEditor.cs b/Assets/XCharts/Editor/XChartEditor.cs index 9568423a..e7364e1a 100644 --- a/Assets/XCharts/Editor/XChartEditor.cs +++ b/Assets/XCharts/Editor/XChartEditor.cs @@ -146,6 +146,13 @@ namespace XCharts AddChart("LiquidChart"); } + [MenuItem("XCharts/CandlestickChart", priority = 54)] + [MenuItem("GameObject/XCharts/CandlestickChart", priority = 54)] + public static void AddCandlestickChart() + { + AddChart("CandlestickChart"); + } + [MenuItem("XCharts/Themes Reload")] public static void ReloadTheme() { diff --git a/Assets/XCharts/Examples/Runtime/Example90_Candlestick.cs b/Assets/XCharts/Examples/Runtime/Example90_Candlestick.cs new file mode 100644 index 00000000..ed58a618 --- /dev/null +++ b/Assets/XCharts/Examples/Runtime/Example90_Candlestick.cs @@ -0,0 +1,75 @@ +/************************************************/ +/* */ +/* Copyright (c) 2018 - 2021 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/************************************************/ + + +using UnityEngine; + +namespace XCharts.Examples +{ + [DisallowMultipleComponent] + [ExecuteInEditMode] + public class Example90_Candlestick : MonoBehaviour + { + private CandlestickChart chart; + private float updateTime; + + void Awake() + { + chart = gameObject.GetComponent(); + if (chart == null) + { + chart = gameObject.AddComponent(); + } + GenerateOHLC(1000); + } + + void Update() + { + if (Input.GetKeyDown(KeyCode.Space)) + { + AddData(); + } + } + + void AddData() + { + } + + void GenerateOHLC(int count) + { + chart.ClearData(); + + var xValue = System.DateTime.Now; + var minute = 60 * 1000; + var baseValue = Random.Range(0f, 1f) * 12000; + var boxVals = new float[4]; + var dayRange = 12; + + for (int i = 0; i < count; i++) + { + baseValue = baseValue + Random.Range(0f,1f) * 30 - 10; + for(int j=0;j< 4;j++){ + boxVals[j] = (Random.Range(0f,1f) - 0.5f) * dayRange + baseValue; + } + System.Array.Sort(boxVals); + var openIdx = Mathf.RoundToInt(Random.Range(0f,1f) * 3); + var closeIdx = Mathf.RoundToInt(Random.Range(0f,1f) * 2); + if(openIdx == closeIdx){ + closeIdx ++; + } + var volumn = boxVals[3]*(1000+Random.Range(0f,1f) * 500); + var open = boxVals[openIdx]; + var close = boxVals[closeIdx]; + var lowest = boxVals[0]; + var heighest = boxVals[3]; + + chart.AddXAxisData(i.ToString()); + chart.AddData(0,open,close,lowest,heighest); + } + } + } +} \ No newline at end of file diff --git a/Assets/XCharts/Examples/Runtime/Example90_Candlestick.cs.meta b/Assets/XCharts/Examples/Runtime/Example90_Candlestick.cs.meta new file mode 100644 index 00000000..189a3727 --- /dev/null +++ b/Assets/XCharts/Examples/Runtime/Example90_Candlestick.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 69c7f3bf337c843888b4a7031eef1027 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Runtime/API/BaseChart_API.cs b/Assets/XCharts/Runtime/API/BaseChart_API.cs index 8f31e40e..924cb98d 100644 --- a/Assets/XCharts/Runtime/API/BaseChart_API.cs +++ b/Assets/XCharts/Runtime/API/BaseChart_API.cs @@ -317,6 +317,20 @@ namespace XCharts } return serieData; } + public virtual SerieData AddData(int serieIndex, float open, float close, float lowest, float heighest, string dataName = null) + { + var serieData = m_Series.AddData(serieIndex, open, close, lowest,heighest, dataName); + if (serieData != null) + { + var serie = m_Series.GetSerie(serieIndex); + if (SerieHelper.GetSerieLabel(serie, serieData).show) + { + RefreshLabel(); + } + RefreshPainter(serie); + } + return serieData; + } /// /// Update serie data by serie name. diff --git a/Assets/XCharts/Runtime/CandlestickChart.cs b/Assets/XCharts/Runtime/CandlestickChart.cs new file mode 100644 index 00000000..975762d5 --- /dev/null +++ b/Assets/XCharts/Runtime/CandlestickChart.cs @@ -0,0 +1,36 @@ + +/************************************************/ +/* */ +/* Copyright (c) 2018 - 2021 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/************************************************/ + +using UnityEngine; + +namespace XCharts +{ + [AddComponentMenu("XCharts/CandlestickChart", 21)] + [ExecuteInEditMode] + [RequireComponent(typeof(RectTransform))] + [DisallowMultipleComponent] + public class CandlestickChart : CoordinateChart + { + +#if UNITY_EDITOR + protected override void Reset() + { + base.Reset(); + title.text = "CandlestickChart"; + tooltip.type = Tooltip.Type.Corss; + + RemoveData(); + var defaultDataCount = SerieTemplate.AddDefaultCandlestickSerie(this, "serie1"); + for (int i = 0; i < defaultDataCount; i++) + { + AddXAxisData("x" + (i + 1)); + } + } +#endif + } +} diff --git a/Assets/XCharts/Runtime/CandlestickChart.cs.meta b/Assets/XCharts/Runtime/CandlestickChart.cs.meta new file mode 100644 index 00000000..359211cf --- /dev/null +++ b/Assets/XCharts/Runtime/CandlestickChart.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7b64f0bb738cc4acfa72fff2c30212b4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Runtime/Component/Main/Serie.cs b/Assets/XCharts/Runtime/Component/Main/Serie.cs index 71c4f1bb..a89a273e 100644 --- a/Assets/XCharts/Runtime/Component/Main/Serie.cs +++ b/Assets/XCharts/Runtime/Component/Main/Serie.cs @@ -60,6 +60,10 @@ namespace XCharts /// 水位图。 /// Liquid, + /// + /// K线图。K线图的data至少包含四个数据:[open, close, lowest, highest] + /// + Candlestick, } /// @@ -1241,6 +1245,23 @@ namespace XCharts return serieData; } + public SerieData AddData(float open, float close, float lowest, float heighest, string dataName = null) + { + CheckMaxCache(); + var serieData = SerieDataPool.Get(); + serieData.data.Add(open); + serieData.data.Add(close); + serieData.data.Add(lowest); + serieData.data.Add(heighest); + serieData.name = dataName; + serieData.index = m_Data.Count; + m_Data.Add(serieData); + m_ShowDataDimension = 4; + SetVerticesDirty(); + CheckDataName(dataName); + return serieData; + } + /// /// 将一组数据添加到系列中。 /// 如果数据只有一个,默认添加到维度Y中。 @@ -1277,6 +1298,7 @@ namespace XCharts } } + private void CheckMaxCache() { if (m_MaxCache <= 0) return; diff --git a/Assets/XCharts/Runtime/Component/Main/Series.cs b/Assets/XCharts/Runtime/Component/Main/Series.cs index 256c6684..bd7cb1fe 100644 --- a/Assets/XCharts/Runtime/Component/Main/Series.cs +++ b/Assets/XCharts/Runtime/Component/Main/Series.cs @@ -307,6 +307,36 @@ namespace XCharts return null; } + /// + /// 添加[open, close, lowest, highest]数据 + /// + /// + /// + /// + /// + /// + /// + /// + public SerieData AddData(int index, float open, float close, float lowest, float heighest, string dataName = null) + { + var serie = GetSerie(index); + if (serie != null) + { + return serie.AddData(open, close, lowest, heighest, dataName); + } + return null; + } + + public SerieData AddData(string serieName, float open, float close, float lowest, float heighest, string dataName = null) + { + var serie = GetSerie(serieName); + if (serie != null) + { + return serie.AddData(open, close, lowest, heighest, dataName); + } + return null; + } + /// /// 添加一组数据到指定的系列中 /// diff --git a/Assets/XCharts/Runtime/Component/Sub/ItemStyle.cs b/Assets/XCharts/Runtime/Component/Sub/ItemStyle.cs index 13beb697..df3e5c76 100644 --- a/Assets/XCharts/Runtime/Component/Sub/ItemStyle.cs +++ b/Assets/XCharts/Runtime/Component/Sub/ItemStyle.cs @@ -37,6 +37,7 @@ namespace XCharts } [SerializeField] private bool m_Show = false; [SerializeField] private Color32 m_Color; + [SerializeField] private Color32 m_Color0; [SerializeField] private Color32 m_ToColor; [SerializeField] private Color32 m_ToColor2; [SerializeField] private Color32 m_BackgroundColor; @@ -46,6 +47,7 @@ namespace XCharts [SerializeField] private Type m_BorderType = Type.Solid; [SerializeField] private float m_BorderWidth = 0; [SerializeField] private Color32 m_BorderColor; + [SerializeField] private Color32 m_BorderColor0; [SerializeField] [Range(0, 1)] private float m_Opacity = 1; [SerializeField] private string m_TooltipFormatter; [SerializeField] private string m_NumericFormatter = ""; @@ -55,6 +57,7 @@ namespace XCharts { m_Show = false; m_Color = Color.clear; + m_Color0 = Color.clear; m_ToColor = Color.clear; m_ToColor2 = Color.clear; m_BackgroundColor = Color.clear; @@ -64,6 +67,7 @@ namespace XCharts m_BorderType = Type.Solid; m_BorderWidth = 0; m_BorderColor = Color.clear; + m_BorderColor0 = Color.clear; m_Opacity = 1; m_TooltipFormatter = null; m_NumericFormatter = ""; @@ -95,6 +99,14 @@ namespace XCharts set { if (PropertyUtil.SetColor(ref m_Color, value)) SetVerticesDirty(); } } /// + /// 数据项颜色。 + /// + public Color32 color0 + { + get { return m_Color0; } + set { if (PropertyUtil.SetColor(ref m_Color0, value)) SetVerticesDirty(); } + } + /// /// Gradient color1. /// 渐变色的颜色1。 /// @@ -161,6 +173,14 @@ namespace XCharts set { if (PropertyUtil.SetColor(ref m_BorderColor, value)) SetVerticesDirty(); } } /// + /// 边框的颜色。 + /// + public Color32 borderColor0 + { + get { return m_BorderColor0; } + set { if (PropertyUtil.SetColor(ref m_BorderColor0, value)) SetVerticesDirty(); } + } + /// /// 边框宽。 /// public float borderWidth @@ -225,6 +245,41 @@ namespace XCharts color.a = (byte)(color.a * m_Opacity); return color; } + public Color32 GetColor0() + { + if (m_Opacity == 1 || m_Color0.a == 0) return m_Color0; + var color = m_Color0; + color.a = (byte)(color.a * m_Opacity); + return color; + } + public Color32 GetColor(Color32 defaultColor) + { + var color = ChartHelper.IsClearColor(m_Color) ? defaultColor : m_Color; + if (m_Opacity == 1 || color.a == 0) return color; + color.a = (byte)(color.a * m_Opacity); + return color; + } + public Color32 GetColor0(Color32 defaultColor) + { + var color = ChartHelper.IsClearColor(m_Color0) ? defaultColor : m_Color0; + if (m_Opacity == 1 || color.a == 0) return color; + color.a = (byte)(color.a * m_Opacity); + return color; + } + public Color32 GetBorderColor(Color32 defaultColor) + { + var color = ChartHelper.IsClearColor(m_BorderColor) ? defaultColor : m_BorderColor; + if (m_Opacity == 1 || color.a == 0) return color; + color.a = (byte)(color.a * m_Opacity); + return color; + } + public Color32 GetBorderColor0(Color32 defaultColor) + { + var color = ChartHelper.IsClearColor(m_BorderColor0) ? defaultColor : m_BorderColor0; + if (m_Opacity == 1 || color.a == 0) return color; + color.a = (byte)(color.a * m_Opacity); + return color; + } public bool IsNeedGradient() { diff --git a/Assets/XCharts/Runtime/Component/Sub/SerieData.cs b/Assets/XCharts/Runtime/Component/Sub/SerieData.cs index 6a641e80..6966a7f5 100644 --- a/Assets/XCharts/Runtime/Component/Sub/SerieData.cs +++ b/Assets/XCharts/Runtime/Component/Sub/SerieData.cs @@ -121,12 +121,36 @@ namespace XCharts /// the maxinum value. /// 最大值。 /// - public float max { get { return m_Data.Max(); } } + public float max + { + get + { + if (m_Data.Count == 0) return 0; + float temp = float.MinValue; + for (int i = 0; i < m_Data.Count; i++) + { + if (m_Data[i] > temp) temp = m_Data[i]; + } + return temp; + } + } /// /// the mininum value. /// 最小值。 /// - public float min { get { return m_Data.Min(); } } + public float min + { + get + { + if (m_Data.Count == 0) return 0; + float temp = float.MaxValue; + for (int i = 0; i < m_Data.Count; i++) + { + if (m_Data[i] < temp) temp = m_Data[i]; + } + return temp; + } + } /// /// 饼图数据项的开始角度(运行时自动计算) /// diff --git a/Assets/XCharts/Runtime/Component/Theme/SerieTheme.cs b/Assets/XCharts/Runtime/Component/Theme/SerieTheme.cs index 5a30899b..2db1b42d 100644 --- a/Assets/XCharts/Runtime/Component/Theme/SerieTheme.cs +++ b/Assets/XCharts/Runtime/Component/Theme/SerieTheme.cs @@ -20,6 +20,11 @@ namespace XCharts [SerializeField] protected float m_ScatterSymbolSelectedSize; [SerializeField] protected float m_PieTooltipExtraRadius; [SerializeField] protected float m_PieSelectedOffset; + [SerializeField] protected Color32 m_CandlestickColor = new Color32(194, 53, 49, 255); + [SerializeField] protected Color32 m_CandlestickColor0 = new Color32(49, 70, 86, 255); + [SerializeField] protected float m_CandlestickBorderWidth = 1; + [SerializeField] protected Color32 m_CandlestickBorderColor = new Color32(194, 53, 49, 255); + [SerializeField] protected Color32 m_CandlestickBorderColor0 = new Color32(49, 70, 86, 255); /// /// the color of text. @@ -67,6 +72,47 @@ namespace XCharts get { return m_PieSelectedOffset; } set { if (PropertyUtil.SetStruct(ref m_PieSelectedOffset, value < 0 ? 0f : value)) SetVerticesDirty(); } } + /// + /// K线图阳线(涨)填充色 + /// + public Color32 candlestickColor + { + get { return m_CandlestickColor; } + set { if (PropertyUtil.SetColor(ref m_CandlestickColor, value)) SetVerticesDirty(); } + } + /// + /// K线图阴线(跌)填充色 + /// + public Color32 candlestickColor0 + { + get { return m_CandlestickColor0; } + set { if (PropertyUtil.SetColor(ref m_CandlestickColor0, value)) SetVerticesDirty(); } + } + /// + /// K线图阳线(跌)边框色 + /// + public Color32 candlestickBorderColor + { + get { return m_CandlestickBorderColor; } + set { if (PropertyUtil.SetColor(ref m_CandlestickBorderColor, value)) SetVerticesDirty(); } + } + /// + /// K线图阴线(跌)边框色 + /// + public Color32 candlestickBorderColor0 + { + get { return m_CandlestickBorderColor0; } + set { if (PropertyUtil.SetColor(ref m_CandlestickBorderColor0, value)) SetVerticesDirty(); } + } + + /// + /// K线图边框宽度 + /// + public float candlestickBorderWidth + { + get { return m_CandlestickBorderWidth; } + set { if (PropertyUtil.SetStruct(ref m_CandlestickBorderWidth, value < 0 ? 0f : value)) SetVerticesDirty(); } + } public void Copy(SerieTheme theme) { @@ -77,6 +123,11 @@ namespace XCharts m_ScatterSymbolSelectedSize = theme.scatterSymbolSelectedSize; m_PieTooltipExtraRadius = theme.pieTooltipExtraRadius; m_PieSelectedOffset = theme.pieSelectedOffset; + m_CandlestickColor = theme.candlestickColor; + m_CandlestickColor0 = theme.candlestickColor0; + m_CandlestickBorderColor = theme.candlestickBorderColor; + m_CandlestickBorderColor0 = theme.candlestickBorderColor0; + m_CandlestickBorderWidth = theme.candlestickBorderWidth; } public SerieTheme(Theme theme) @@ -88,6 +139,28 @@ namespace XCharts m_ScatterSymbolSelectedSize = XChartsSettings.serieScatterSymbolSelectedSize; m_PieTooltipExtraRadius = XChartsSettings.pieTooltipExtraRadius; m_PieSelectedOffset = XChartsSettings.pieSelectedOffset; + m_CandlestickBorderWidth = XChartsSettings.serieCandlestickBorderWidth; + switch (theme) + { + case Theme.Default: + m_CandlestickColor = ColorUtil.GetColor("#c23531"); + m_CandlestickColor0 = ColorUtil.GetColor("#314656"); + m_CandlestickBorderColor = ColorUtil.GetColor("#c23531"); + m_CandlestickBorderColor0 = ColorUtil.GetColor("#314656"); + break; + case Theme.Light: + m_CandlestickColor = ColorUtil.GetColor("#c23531"); + m_CandlestickColor0 = ColorUtil.GetColor("#314656"); + m_CandlestickBorderColor = ColorUtil.GetColor("#c23531"); + m_CandlestickBorderColor0 = ColorUtil.GetColor("#314656"); + break; + case Theme.Dark: + m_CandlestickColor = ColorUtil.GetColor("#c23531"); + m_CandlestickColor0 = ColorUtil.GetColor("#314656"); + m_CandlestickBorderColor = ColorUtil.GetColor("#c23531"); + m_CandlestickBorderColor0 = ColorUtil.GetColor("#314656"); + break; + } } } } \ No newline at end of file diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs index 246d7d99..8f2e9e2b 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs @@ -175,6 +175,9 @@ namespace XCharts case SerieType.Heatmap: DrawHeatmapSerie(vh, colorIndex, serie); break; + case SerieType.Candlestick: + DrawCandlestickSerie(vh, colorIndex, serie); + break; } } @@ -846,7 +849,7 @@ namespace XCharts if (dataZoom != null && dataZoom.enable) { if (axis is XAxis) dataZoom.SetXAxisIndexValueInfo(axisIndex, tempMinValue, tempMaxValue); - else dataZoom.SetXAxisIndexValueInfo(axisIndex, tempMinValue, tempMaxValue); + else dataZoom.SetYAxisIndexValueInfo(axisIndex, tempMinValue, tempMaxValue); } if (updateChart) { diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs index 5defaeb0..ce16369f 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs @@ -587,7 +587,7 @@ namespace XCharts for (int i = 0; i < m_Series.Count; i++) { var serie = m_Series.list[i]; - if (serie.type == SerieType.Bar) + if (serie.type == SerieType.Bar || serie.type == SerieType.Candlestick) { if (serie.barGap != 0) { @@ -625,7 +625,8 @@ namespace XCharts for (int i = 0; i < m_Series.Count; i++) { var serie = m_Series.list[i]; - if (serie.type == SerieType.Bar && serie.show) + if (!serie.show) continue; + if (serie.type == SerieType.Bar || serie.type == SerieType.Candlestick) { if (!string.IsNullOrEmpty(serie.stack)) { @@ -656,7 +657,8 @@ namespace XCharts for (int i = 0; i < m_Series.Count; i++) { var serie = m_Series.list[i]; - if (serie.type == SerieType.Bar && serie.show && now.stack.Equals(serie.stack)) + if ((serie.type == SerieType.Bar && serie.type == SerieType.Candlestick) + && serie.show && now.stack.Equals(serie.stack)) { if (serie.barWidth > barWidth) barWidth = serie.barWidth; } diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawCandlestick.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawCandlestick.cs new file mode 100644 index 00000000..b00afe68 --- /dev/null +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawCandlestick.cs @@ -0,0 +1,150 @@ +/************************************************/ +/* */ +/* Copyright (c) 2018 - 2021 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/************************************************/ + +using UnityEngine; +using UnityEngine.UI; +using XUGL; + +namespace XCharts +{ + public partial class CoordinateChart + { + protected void DrawCandlestickSerie(VertexHelper vh, int colorIndex, Serie serie) + { + if (!IsActive(serie.index)) return; + if (serie.animation.HasFadeOut()) return; + var showData = serie.GetDataList(dataZoom); + var yAxis = m_YAxes[serie.yAxisIndex]; + var xAxis = m_XAxes[serie.xAxisIndex]; + var grid = GetSerieGridOrDefault(serie); + float categoryWidth = AxisHelper.GetDataWidth(xAxis, grid.runtimeWidth, showData.Count, dataZoom); + float barGap = GetBarGap(); + float totalBarWidth = GetBarTotalWidth(categoryWidth, barGap); + float barWidth = serie.GetBarWidth(categoryWidth); + float offset = (categoryWidth - totalBarWidth) / 2; + float barGapWidth = barWidth + barWidth * barGap; + float space = serie.barGap == -1 ? offset : offset + GetBarIndex(serie) * barGapWidth; + int maxCount = serie.maxShow > 0 + ? (serie.maxShow > showData.Count ? showData.Count : serie.maxShow) + : showData.Count; + + bool dataChanging = false; + float dataChangeDuration = serie.animation.GetUpdateAnimationDuration(); + float yMinValue = yAxis.GetCurrMinValue(dataChangeDuration); + float yMaxValue = yAxis.GetCurrMaxValue(dataChangeDuration); + var isAllBarEnd = true; + var isYAxis = false; + for (int i = serie.minShow; i < maxCount; i++) + { + var serieData = showData[i]; + if (serie.IsIgnoreValue(serieData.GetData(1))) + { + serie.dataPoints.Add(Vector3.zero); + continue; + } + var highlight = (tooltip.show && tooltip.IsSelected(i)) + || serie.data[i].highlighted + || serie.highlighted; + var itemStyle = SerieHelper.GetItemStyle(serie, serieData, highlight); + var open = serieData.GetCurrData(0, dataChangeDuration, yAxis.inverse, yMinValue, yMaxValue); + var close = serieData.GetCurrData(1, dataChangeDuration, yAxis.inverse, yMinValue, yMaxValue); + var lowest = serieData.GetCurrData(2, dataChangeDuration, yAxis.inverse, yMinValue, yMaxValue); + var heighest = serieData.GetCurrData(3, dataChangeDuration, yAxis.inverse, yMinValue, yMaxValue); + var isRise = close > open; + var borderWidth = open == 0 ? 0f + : (itemStyle.runtimeBorderWidth == 0 ? m_Theme.serie.candlestickBorderWidth + : itemStyle.runtimeBorderWidth); + if (serieData.IsDataChanged()) dataChanging = true; + float pX = grid.runtimeX + i * categoryWidth; + float zeroY = grid.runtimeY + yAxis.runtimeZeroYOffset; + if (!xAxis.boundaryGap) pX -= categoryWidth / 2; + float pY = zeroY; + var barHig = 0f; + var valueTotal = yMaxValue - yMinValue; + var minCut = (yMinValue > 0 ? yMinValue : 0); + if (valueTotal != 0) + { + barHig = (close - open) / valueTotal * grid.runtimeHeight; + pY += (open - minCut) / valueTotal * grid.runtimeHeight; + } + serieData.runtimeStackHig = barHig; + var isBarEnd = false; + float currHig = CheckAnimation(serie, i, barHig, out isBarEnd); + if (!isBarEnd) isAllBarEnd = false; + Vector3 plb, plt, prt, prb, top; + + plb = new Vector3(pX + space + borderWidth, pY + borderWidth); + plt = new Vector3(pX + space + borderWidth, pY + currHig - borderWidth); + prt = new Vector3(pX + space + barWidth - borderWidth, pY + currHig - borderWidth); + prb = new Vector3(pX + space + barWidth - borderWidth, pY + borderWidth); + top = new Vector3(pX + space + barWidth / 2, pY + currHig - borderWidth); + if (serie.clip) + { + plb = ClampInGrid(grid, plb); + plt = ClampInGrid(grid, plt); + prt = ClampInGrid(grid, prt); + prb = ClampInGrid(grid, prb); + top = ClampInGrid(grid, top); + } + serie.dataPoints.Add(top); + var areaColor = isRise + ? itemStyle.GetColor(m_Theme.serie.candlestickColor) + : itemStyle.GetColor0(m_Theme.serie.candlestickColor0); + var borderColor = isRise + ? itemStyle.GetBorderColor(m_Theme.serie.candlestickBorderColor) + : itemStyle.GetBorderColor0(m_Theme.serie.candlestickBorderColor0); + var itemWidth = Mathf.Abs(prt.x - plb.x); + var itemHeight = Mathf.Abs(plt.y - prb.y); + var center = new Vector3((plb.x + prt.x) / 2, (plt.y + prb.y) / 2); + var lowPos = new Vector3(center.x, zeroY + (lowest - minCut) / valueTotal * grid.runtimeHeight); + var heighPos = new Vector3(center.x, zeroY + (heighest - minCut) / valueTotal * grid.runtimeHeight); + var openCenterPos = new Vector3(center.x, prb.y); + var closeCenterPos = new Vector3(center.x, prt.y); + if (barWidth > 2f * borderWidth) + { + if (itemWidth > 0 && itemHeight > 0) + { + if (ItemStyleHelper.IsNeedCorner(itemStyle)) + { + UGL.DrawRoundRectangle(vh, center, itemWidth, itemHeight, areaColor, areaColor, 0, + itemStyle.cornerRadius, isYAxis, 0.5f); + } + else + { + CheckClipAndDrawPolygon(vh, ref prb, ref plb, ref plt, ref prt, areaColor, areaColor, + serie.clip, grid); + } + UGL.DrawBorder(vh, center, itemWidth, itemHeight, 2 * borderWidth, borderColor, 0, + itemStyle.cornerRadius, isYAxis, 0.5f); + } + } + else + { + UGL.DrawLine(vh, openCenterPos, closeCenterPos, Mathf.Max(borderWidth, barWidth / 2), borderColor); + } + if (isRise) + { + UGL.DrawLine(vh, openCenterPos, lowPos, borderWidth, borderColor); + UGL.DrawLine(vh, closeCenterPos, heighPos, borderWidth, borderColor); + } + else + { + UGL.DrawLine(vh, closeCenterPos, lowPos, borderWidth, borderColor); + UGL.DrawLine(vh, openCenterPos, heighPos, borderWidth, borderColor); + } + } + if (isAllBarEnd) + { + serie.animation.AllBarEnd(); + } + if (dataChanging) + { + RefreshPainter(serie); + } + } + } +} \ No newline at end of file diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawCandlestick.cs.meta b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawCandlestick.cs.meta new file mode 100644 index 00000000..5e60337f --- /dev/null +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawCandlestick.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c404a9bbfdf51409e808fb354c438ca2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Runtime/Internal/Helper/SeriesHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/SeriesHelper.cs index aeca863f..50f88a3c 100644 --- a/Assets/XCharts/Runtime/Internal/Helper/SeriesHelper.cs +++ b/Assets/XCharts/Runtime/Internal/Helper/SeriesHelper.cs @@ -454,9 +454,19 @@ namespace XCharts var showData = serie.GetDataList(dataZoom); foreach (var data in showData) { - var currData = data.GetData(yValue ? 1 : 0, inverse); - if (currData > max) max = currData; - if (currData < min) min = currData; + if (serie.type == SerieType.Candlestick) + { + var dataMin = data.min; + var dataMax = data.max; + if (dataMax > max) max = dataMax; + if (dataMin < min) min = dataMin; + } + else + { + var currData = data.GetData(yValue ? 1 : 0, inverse); + if (currData > max) max = currData; + if (currData < min) min = currData; + } } } } @@ -488,7 +498,15 @@ namespace XCharts { if (!_serieTotalValueForMinMax.ContainsKey(j)) _serieTotalValueForMinMax[j] = 0; - var currData = (yValue ? showData[j].GetData(1) : showData[j].GetData(0)); + var currData = 0f; + if (serie.type == SerieType.Candlestick) + { + currData = showData[j].max; + } + else + { + currData = yValue ? showData[j].GetData(1) : showData[j].GetData(0); + } if (inverse) currData = -currData; _serieTotalValueForMinMax[j] = _serieTotalValueForMinMax[j] + currData; } diff --git a/Assets/XCharts/Runtime/Internal/Helper/TooltipHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/TooltipHelper.cs index 75ebaa4f..d0f8d0ab 100644 --- a/Assets/XCharts/Runtime/Internal/Helper/TooltipHelper.cs +++ b/Assets/XCharts/Runtime/Internal/Helper/TooltipHelper.cs @@ -210,9 +210,25 @@ namespace XCharts { var valueTxt = isIngore ? tooltip.ignoreDataDefaultContent : ChartCached.FloatToStr(yValue, numericFormatter); - sb.Append("● ") - .Append(key).Append(!string.IsNullOrEmpty(key) ? " : " : "") - .Append(valueTxt); + sb.Append("● "); + if (serie.type == SerieType.Candlestick) + { + sb.Append(key).Append(FormatterHelper.PH_NN); + var data = serieData.data; + var open = ChartCached.FloatToStr(data[0], numericFormatter); + var close = ChartCached.FloatToStr(data[1], numericFormatter); + var lowest = ChartCached.FloatToStr(data[2], numericFormatter); + var heighest = ChartCached.FloatToStr(data[3], numericFormatter); + sb.Append(" open: ").Append(open).Append(FormatterHelper.PH_NN); + sb.Append(" close: ").Append(close).Append(FormatterHelper.PH_NN); + sb.Append(" lowest: ").Append(lowest).Append(FormatterHelper.PH_NN); + sb.Append(" heighest: ").Append(heighest).Append(FormatterHelper.PH_NN); + } + else + { + sb.Append(key).Append(!string.IsNullOrEmpty(key) ? " : " : ""); + sb.Append(valueTxt); + } } } @@ -224,6 +240,7 @@ namespace XCharts { case SerieType.Line: case SerieType.Bar: + case SerieType.Candlestick: InitCoordinateTooltip(ref sb, tooltip, serie, index, theme, isCartesian, dataZoom); break; case SerieType.Scatter: diff --git a/Assets/XCharts/Runtime/Template/SerieTemplate.cs b/Assets/XCharts/Runtime/Template/SerieTemplate.cs index 8b3f4ebc..ada7f05c 100644 --- a/Assets/XCharts/Runtime/Template/SerieTemplate.cs +++ b/Assets/XCharts/Runtime/Template/SerieTemplate.cs @@ -27,6 +27,7 @@ namespace XCharts case SerieType.Liquid: AddDefaultLiquidSerie(chart, serieName); break; case SerieType.Gauge: AddDefaultGaugeSerie(chart, serieName); break; case SerieType.Ring: AddDefaultRingSerie(chart, serieName); break; + case SerieType.Candlestick: AddDefaultCandlestickSerie(chart, serieName); break; default: Debug.LogError("AddDefaultSerie: not support serieType yet:" + serieType); break; } } @@ -168,5 +169,19 @@ namespace XCharts var max = 100; chart.AddData(serie.index, value, max, "data1"); } + public static int AddDefaultCandlestickSerie(BaseChart chart, string serieName) + { + var serie = chart.AddSerie(SerieType.Candlestick, serieName); + var defaultDataCount = 5; + for (int i = 0; i < defaultDataCount; i++) + { + var open = Random.Range(20, 60); + var close = Random.Range(40, 90); + var lowest = Random.Range(0, 50); + var heighest = Random.Range(50, 100); + chart.AddData(serie.index, open, close, lowest, heighest); + } + return defaultDataCount; + } } } \ No newline at end of file diff --git a/Assets/XCharts/Runtime/XChartsSettings.cs b/Assets/XCharts/Runtime/XChartsSettings.cs index c2fb5c41..85812dc6 100644 --- a/Assets/XCharts/Runtime/XChartsSettings.cs +++ b/Assets/XCharts/Runtime/XChartsSettings.cs @@ -50,6 +50,7 @@ namespace XCharts [SerializeField] [Range(0, 200)] private float m_SerieLineSymbolSelectedSize = 8f; [SerializeField] [Range(0, 200)] private float m_SerieScatterSymbolSize = 20f; [SerializeField] [Range(0, 200)] private float m_SerieScatterSymbolSelectedSize = 30f; + [SerializeField] [Range(0, 10)] private float m_SerieCandlestickBorderWidth = 1f; [SerializeField] private bool m_EditorBlockEnable = true; [SerializeField] private bool m_EditorShowAllListData = false; @@ -97,6 +98,7 @@ namespace XCharts public static float serieLineSymbolSelectedSize { get { return Instance.m_SerieLineSymbolSelectedSize; } } public static float serieScatterSymbolSize { get { return Instance.m_SerieScatterSymbolSize; } } public static float serieScatterSymbolSelectedSize { get { return Instance.m_SerieScatterSymbolSelectedSize; } } + public static float serieCandlestickBorderWidth { get { return Instance.m_SerieCandlestickBorderWidth; } } #endregion #region editor diff --git a/Assets/XChartsDemo/xcharts_demo.unity b/Assets/XChartsDemo/xcharts_demo.unity index 9123494a..8f5db80a 100644 --- a/Assets/XChartsDemo/xcharts_demo.unity +++ b/Assets/XChartsDemo/xcharts_demo.unity @@ -1115,6 +1115,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 5726232} m_CullTransparentMesh: 0 +--- !u!1 &6832473 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6832474} + - component: {fileID: 6832476} + - component: {fileID: 6832475} + m_Layer: 0 + m_Name: axis_y12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6832474 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6832473} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 136043331} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 170.79999} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &6832475 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6832473} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &6832476 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6832473} + m_CullTransparentMesh: 0 --- !u!1 &6935049 GameObject: m_ObjectHideFlags: 1 @@ -1335,6 +1413,148 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 7447659} m_CullTransparentMesh: 0 +--- !u!1 &7790755 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7790756} + - component: {fileID: 7790758} + - component: {fileID: 7790757} + m_Layer: 0 + m_Name: painter_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7790756 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7790755} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &7790757 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7790755} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &7790758 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7790755} + m_CullTransparentMesh: 0 +--- !u!1 &7792004 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7792005} + - component: {fileID: 7792007} + - component: {fileID: 7792006} + m_Layer: 0 + m_Name: axis_x4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7792005 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7792004} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 406619059} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 1030, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &7792006 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7792004} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &7792007 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7792004} + m_CullTransparentMesh: 0 --- !u!1 &8430352 GameObject: m_ObjectHideFlags: 0 @@ -3757,6 +3977,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: PolarChart @@ -3790,6 +4016,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -3828,6 +4055,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -4196,6 +4424,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -4389,6 +4618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -4408,6 +4640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -4458,6 +4693,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -4477,6 +4715,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -4566,6 +4807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -4585,6 +4829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -4636,6 +4883,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -4655,6 +4905,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -4733,6 +4986,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -4752,6 +5008,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -4803,6 +5062,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -4822,6 +5084,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -4900,6 +5165,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -4919,6 +5187,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -4970,6 +5241,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -4989,6 +5263,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5067,6 +5344,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5086,6 +5366,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5137,6 +5420,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5156,6 +5442,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5234,6 +5523,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5253,6 +5545,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5304,6 +5599,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5323,6 +5621,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5401,6 +5702,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5420,6 +5724,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5471,6 +5778,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5490,6 +5800,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5568,6 +5881,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5587,6 +5903,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5638,6 +5957,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5657,6 +5979,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5735,6 +6060,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5754,6 +6082,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -5805,6 +6136,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -5824,6 +6158,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -7234,6 +7571,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 25367891} m_CullTransparentMesh: 0 +--- !u!1 &25569589 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 25569590} + - component: {fileID: 25569592} + - component: {fileID: 25569591} + m_Layer: 0 + m_Name: axis_y0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &25569590 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 25569589} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 801904826} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &25569591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 25569589} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &25569592 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 25569589} + m_CullTransparentMesh: 0 --- !u!1 &26190378 GameObject: m_ObjectHideFlags: 0 @@ -8521,6 +8936,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Different Line Types @@ -8554,6 +8975,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -8592,6 +9014,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -9327,6 +9750,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -9520,6 +9944,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -9539,6 +9966,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -9589,6 +10019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -9608,6 +10041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -9697,6 +10133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -9716,6 +10155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -9767,6 +10209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -9786,6 +10231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -9864,6 +10312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -9883,6 +10334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -9934,6 +10388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -9953,6 +10410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10031,6 +10491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10050,6 +10513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10101,6 +10567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10120,6 +10589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10198,6 +10670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10217,6 +10692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10268,6 +10746,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10287,6 +10768,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10365,6 +10849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10384,6 +10871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10435,6 +10925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10454,6 +10947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10532,6 +11028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10551,6 +11050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10602,6 +11104,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10621,6 +11126,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10699,6 +11207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10718,6 +11229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10769,6 +11283,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -10788,6 +11305,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -10885,6 +11405,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -11078,6 +11599,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11097,6 +11621,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11147,6 +11674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11166,6 +11696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11255,6 +11788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11274,6 +11810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11325,6 +11864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11344,6 +11886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11422,6 +11967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11441,6 +11989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11492,6 +12043,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11511,6 +12065,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11589,6 +12146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11608,6 +12168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11659,6 +12222,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11678,6 +12244,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11756,6 +12325,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11775,6 +12347,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11826,6 +12401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11845,6 +12423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11923,6 +12504,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -11942,6 +12526,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -11993,6 +12580,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12012,6 +12602,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12090,6 +12683,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12109,6 +12705,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12160,6 +12759,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12179,6 +12781,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12257,6 +12862,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12276,6 +12884,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12327,6 +12938,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12346,6 +12960,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12443,6 +13060,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -12636,6 +13254,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12655,6 +13276,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12705,6 +13329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12724,6 +13351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12813,6 +13443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12832,6 +13465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12883,6 +13519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12902,6 +13541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -12980,6 +13622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -12999,6 +13644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13050,6 +13698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13069,6 +13720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13147,6 +13801,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13166,6 +13823,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13217,6 +13877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13236,6 +13899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13314,6 +13980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13333,6 +14002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13384,6 +14056,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13403,6 +14078,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13481,6 +14159,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13500,6 +14181,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13551,6 +14235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13570,6 +14257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13648,6 +14338,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13667,6 +14360,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13718,6 +14414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13737,6 +14436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13815,6 +14517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13834,6 +14539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -13885,6 +14593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -13904,6 +14615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14001,6 +14715,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -14194,6 +14909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14213,6 +14931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14263,6 +14984,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14282,6 +15006,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14371,6 +15098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14390,6 +15120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14441,6 +15174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14460,6 +15196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14538,6 +15277,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14557,6 +15299,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14608,6 +15353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14627,6 +15375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14705,6 +15456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14724,6 +15478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14775,6 +15532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14794,6 +15554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14872,6 +15635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14891,6 +15657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -14942,6 +15711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -14961,6 +15733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -15039,6 +15814,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -15058,6 +15836,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -15109,6 +15890,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -15128,6 +15912,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -15206,6 +15993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -15225,6 +16015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -15276,6 +16069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -15295,6 +16091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -15373,6 +16172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -15392,6 +16194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -15443,6 +16248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -15462,6 +16270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -16272,6 +17083,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 36884613} m_CullTransparentMesh: 0 +--- !u!1 &36918015 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 36918016} + - component: {fileID: 36918018} + - component: {fileID: 36918017} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &36918016 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 36918015} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 810583009} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &36918017 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 36918015} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &36918018 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 36918015} + m_CullTransparentMesh: 0 --- !u!1 &37761822 GameObject: m_ObjectHideFlags: 0 @@ -16545,6 +17434,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 38815633} m_CullTransparentMesh: 0 +--- !u!1 &38979885 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 38979886} + - component: {fileID: 38979888} + - component: {fileID: 38979887} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &38979886 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 38979885} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 406619059} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 638, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &38979887 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 38979885} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 2020-10-26 +--- !u!222 &38979888 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 38979885} + m_CullTransparentMesh: 0 --- !u!1 &39001212 GameObject: m_ObjectHideFlags: 0 @@ -17464,6 +18431,81 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &45451823 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 45451824} + - component: {fileID: 45451826} + - component: {fileID: 45451825} + m_Layer: 0 + m_Name: axis_x1_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &45451824 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 45451823} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2038689681} + m_Father: {fileID: 989549433} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &45451825 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 45451823} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &45451826 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 45451823} + m_CullTransparentMesh: 0 --- !u!1 &45478545 GameObject: m_ObjectHideFlags: 0 @@ -18032,6 +19074,41 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 50118074} m_CullTransparentMesh: 0 +--- !u!1 &50658835 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 50658836} + m_Layer: 0 + m_Name: legend0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &50658836 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 50658835} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &50659519 GameObject: m_ObjectHideFlags: 0 @@ -20698,6 +21775,119 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 67578398} m_CullTransparentMesh: 0 +--- !u!1 &67945511 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 67945512} + - component: {fileID: 67945514} + - component: {fileID: 67945513} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &67945512 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 67945511} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 850711253} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &67945513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 67945511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &67945514 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 67945511} + m_CullTransparentMesh: 0 +--- !u!1 &68319939 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 68319940} + m_Layer: 0 + m_Name: label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &68319940 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 68319939} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &68512233 GameObject: m_ObjectHideFlags: 0 @@ -22135,6 +23325,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: line-bar @@ -22168,6 +23364,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -22206,6 +23403,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -22943,6 +24141,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -23136,6 +24335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23155,6 +24357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23205,6 +24410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23224,6 +24432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23313,6 +24524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23332,6 +24546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23383,6 +24600,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23402,6 +24622,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23480,6 +24703,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23499,6 +24725,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23550,6 +24779,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23569,6 +24801,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23647,6 +24882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23666,6 +24904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23717,6 +24958,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23736,6 +24980,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23814,6 +25061,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23833,6 +25083,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23884,6 +25137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -23903,6 +25159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -23981,6 +25240,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24000,6 +25262,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24051,6 +25316,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24070,6 +25338,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24167,6 +25438,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -24360,6 +25632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24379,6 +25654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24429,6 +25707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24448,6 +25729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24537,6 +25821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24556,6 +25843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24607,6 +25897,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24626,6 +25919,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24704,6 +26000,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24723,6 +26022,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24774,6 +26076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24793,6 +26098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24871,6 +26179,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24890,6 +26201,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -24941,6 +26255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -24960,6 +26277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -25038,6 +26358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -25057,6 +26380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -25108,6 +26434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -25127,6 +26456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -25205,6 +26537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -25224,6 +26559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -25275,6 +26613,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -25294,6 +26635,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -26784,6 +28128,43 @@ RectTransform: m_AnchoredPosition: {x: -287.33334, y: 143.66667} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &83293754 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 83293755} + m_Layer: 0 + m_Name: datazoom0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &83293755 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 83293754} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1683868094} + - {fileID: 535352482} + m_Father: {fileID: 1070880691} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &83441846 GameObject: m_ObjectHideFlags: 1 @@ -27300,6 +28681,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 85383319} m_CullTransparentMesh: 0 +--- !u!1 &85899472 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 85899473} + - component: {fileID: 85899475} + - component: {fileID: 85899474} + m_Layer: 0 + m_Name: axis_y10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &85899473 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 85899472} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 136043331} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &85899474 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 85899472} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &85899475 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 85899472} + m_CullTransparentMesh: 0 --- !u!1 &85934243 GameObject: m_ObjectHideFlags: 0 @@ -27765,6 +29224,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Simple & Border & Label @@ -27798,6 +29263,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -27836,6 +29302,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -28571,6 +30038,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -28764,6 +30232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -28783,6 +30254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 4278190080 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -28833,6 +30307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -28852,6 +30329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -28941,6 +30421,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -28960,6 +30443,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29011,6 +30497,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29030,6 +30519,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29108,6 +30600,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29127,6 +30622,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29178,6 +30676,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29197,6 +30698,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29275,6 +30779,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29294,6 +30801,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29345,6 +30855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29364,6 +30877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29442,6 +30958,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29461,6 +30980,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29512,6 +31034,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29531,6 +31056,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29609,6 +31137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29628,6 +31159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29679,6 +31213,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29698,6 +31235,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29776,6 +31316,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29795,6 +31338,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29846,6 +31392,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29865,6 +31414,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -29943,6 +31495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -29962,6 +31517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -30013,6 +31571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -30032,6 +31593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -31445,6 +33009,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Gradient By VisualMap @@ -31478,6 +33048,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -31516,6 +33087,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -32253,6 +33825,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -32446,6 +34019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -32465,6 +34041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -32515,6 +34094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -32534,6 +34116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -32623,6 +34208,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -32642,6 +34230,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -32693,6 +34284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -32712,6 +34306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -32790,6 +34387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -32809,6 +34409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -32860,6 +34463,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -32879,6 +34485,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -32957,6 +34566,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -32976,6 +34588,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -33027,6 +34642,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -33046,6 +34664,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -33124,6 +34745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -33143,6 +34767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -33194,6 +34821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -33213,6 +34843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -33291,6 +34924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -33310,6 +34946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -33361,6 +35000,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -33380,6 +35022,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -34766,6 +36411,43 @@ RectTransform: m_AnchoredPosition: {x: -287.33334, y: 143.66667} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &104672480 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 104672481} + m_Layer: 0 + m_Name: datazoom1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &104672481 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 104672480} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 251541823} + - {fileID: 309543559} + m_Father: {fileID: 1867673941} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &104857133 GameObject: m_ObjectHideFlags: 1 @@ -35956,6 +37638,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -35989,6 +37677,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -36027,6 +37716,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -36760,6 +38450,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -36953,6 +38644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -36972,6 +38666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37022,6 +38719,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37041,6 +38741,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37130,6 +38833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37149,6 +38855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37200,6 +38909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37219,6 +38931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37303,6 +39018,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37322,6 +39040,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37373,6 +39094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37392,6 +39116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37476,6 +39203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37495,6 +39225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37546,6 +39279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37565,6 +39301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37649,6 +39388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37668,6 +39410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37719,6 +39464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37738,6 +39486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37822,6 +39573,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37841,6 +39595,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37892,6 +39649,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -37911,6 +39671,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -37995,6 +39758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38014,6 +39780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38065,6 +39834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38084,6 +39856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38168,6 +39943,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38187,6 +39965,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38238,6 +40019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38257,6 +40041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38341,6 +40128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38360,6 +40150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38411,6 +40204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38430,6 +40226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38514,6 +40313,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38533,6 +40335,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38584,6 +40389,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38603,6 +40411,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38687,6 +40498,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38706,6 +40520,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38757,6 +40574,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38776,6 +40596,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38860,6 +40683,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38879,6 +40705,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -38930,6 +40759,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -38949,6 +40781,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39032,6 +40867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39051,6 +40889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39102,6 +40943,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39121,6 +40965,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39204,6 +41051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39223,6 +41073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39274,6 +41127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39293,6 +41149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39376,6 +41235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39395,6 +41257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39446,6 +41311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39465,6 +41333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39548,6 +41419,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39567,6 +41441,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39618,6 +41495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39637,6 +41517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39720,6 +41603,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39739,6 +41625,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39790,6 +41679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39809,6 +41701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39892,6 +41787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39911,6 +41809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -39962,6 +41863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -39981,6 +41885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40064,6 +41971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40083,6 +41993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40134,6 +42047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40153,6 +42069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40236,6 +42155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40255,6 +42177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40306,6 +42231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40325,6 +42253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40408,6 +42339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40427,6 +42361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40478,6 +42415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40497,6 +42437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40580,6 +42523,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40599,6 +42545,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40650,6 +42599,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40669,6 +42621,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40752,6 +42707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40771,6 +42729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40822,6 +42783,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40841,6 +42805,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40924,6 +42891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -40943,6 +42913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -40994,6 +42967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41013,6 +42989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41096,6 +43075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41115,6 +43097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41166,6 +43151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41185,6 +43173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41268,6 +43259,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41287,6 +43281,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41338,6 +43335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41357,6 +43357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41440,6 +43443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41459,6 +43465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41510,6 +43519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41529,6 +43541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41612,6 +43627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41631,6 +43649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41682,6 +43703,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41701,6 +43725,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41784,6 +43811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41803,6 +43833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41854,6 +43887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41873,6 +43909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -41956,6 +43995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -41975,6 +44017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42026,6 +44071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42045,6 +44093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42128,6 +44179,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42147,6 +44201,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42198,6 +44255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42217,6 +44277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42300,6 +44363,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42319,6 +44385,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42370,6 +44439,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42389,6 +44461,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42492,6 +44567,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -42685,6 +44761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42704,6 +44783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42754,6 +44836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42773,6 +44858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42862,6 +44950,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42881,6 +44972,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -42932,6 +45026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -42951,6 +45048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43035,6 +45135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43054,6 +45157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43105,6 +45211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43124,6 +45233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43208,6 +45320,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43227,6 +45342,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43278,6 +45396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43297,6 +45418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43381,6 +45505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43400,6 +45527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43451,6 +45581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43470,6 +45603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43554,6 +45690,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43573,6 +45712,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43624,6 +45766,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43643,6 +45788,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43727,6 +45875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43746,6 +45897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43797,6 +45951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43816,6 +45973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43900,6 +46060,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43919,6 +46082,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -43970,6 +46136,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -43989,6 +46158,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44073,6 +46245,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44092,6 +46267,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44143,6 +46321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44162,6 +46343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44246,6 +46430,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44265,6 +46452,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44316,6 +46506,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44335,6 +46528,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44419,6 +46615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44438,6 +46637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44489,6 +46691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44508,6 +46713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44592,6 +46800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44611,6 +46822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44662,6 +46876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44681,6 +46898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44764,6 +46984,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44783,6 +47006,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44834,6 +47060,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44853,6 +47082,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -44936,6 +47168,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -44955,6 +47190,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45006,6 +47244,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45025,6 +47266,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45108,6 +47352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45127,6 +47374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45178,6 +47428,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45197,6 +47450,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45280,6 +47536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45299,6 +47558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45350,6 +47612,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45369,6 +47634,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45452,6 +47720,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45471,6 +47742,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45522,6 +47796,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45541,6 +47818,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45624,6 +47904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45643,6 +47926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45694,6 +47980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45713,6 +48002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45796,6 +48088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45815,6 +48110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45866,6 +48164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45885,6 +48186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -45968,6 +48272,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -45987,6 +48294,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46038,6 +48348,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46057,6 +48370,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46140,6 +48456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46159,6 +48478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46210,6 +48532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46229,6 +48554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46312,6 +48640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46331,6 +48662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46382,6 +48716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46401,6 +48738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46484,6 +48824,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46503,6 +48846,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46554,6 +48900,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46573,6 +48922,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46656,6 +49008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46675,6 +49030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46726,6 +49084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46745,6 +49106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46828,6 +49192,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46847,6 +49214,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -46898,6 +49268,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -46917,6 +49290,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47000,6 +49376,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47019,6 +49398,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47070,6 +49452,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47089,6 +49474,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47172,6 +49560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47191,6 +49582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47242,6 +49636,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47261,6 +49658,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47344,6 +49744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47363,6 +49766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47414,6 +49820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47433,6 +49842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47516,6 +49928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47535,6 +49950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47586,6 +50004,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47605,6 +50026,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47688,6 +50112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47707,6 +50134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47758,6 +50188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47777,6 +50210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47860,6 +50296,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47879,6 +50318,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -47930,6 +50372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -47949,6 +50394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48032,6 +50480,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48051,6 +50502,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48102,6 +50556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48121,6 +50578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48224,6 +50684,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -48417,6 +50878,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48436,6 +50900,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48486,6 +50953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48505,6 +50975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48594,6 +51067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48613,6 +51089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48664,6 +51143,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48683,6 +51165,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48767,6 +51252,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48786,6 +51274,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48837,6 +51328,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48856,6 +51350,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -48940,6 +51437,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -48959,6 +51459,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49010,6 +51513,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49029,6 +51535,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49113,6 +51622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49132,6 +51644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49183,6 +51698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49202,6 +51720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49286,6 +51807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49305,6 +51829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49356,6 +51883,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49375,6 +51905,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49459,6 +51992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49478,6 +52014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49529,6 +52068,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49548,6 +52090,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49632,6 +52177,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49651,6 +52199,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49702,6 +52253,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49721,6 +52275,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49805,6 +52362,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49824,6 +52384,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49875,6 +52438,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49894,6 +52460,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -49978,6 +52547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -49997,6 +52569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50048,6 +52623,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50067,6 +52645,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50151,6 +52732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50170,6 +52754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50221,6 +52808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50240,6 +52830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50324,6 +52917,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50343,6 +52939,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50394,6 +52993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50413,6 +53015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50496,6 +53101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50515,6 +53123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50566,6 +53177,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50585,6 +53199,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50668,6 +53285,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50687,6 +53307,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50738,6 +53361,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50757,6 +53383,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50840,6 +53469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50859,6 +53491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -50910,6 +53545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -50929,6 +53567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51012,6 +53653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51031,6 +53675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51082,6 +53729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51101,6 +53751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51184,6 +53837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51203,6 +53859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51254,6 +53913,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51273,6 +53935,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51356,6 +54021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51375,6 +54043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51426,6 +54097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51445,6 +54119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51528,6 +54205,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51547,6 +54227,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51598,6 +54281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51617,6 +54303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51700,6 +54389,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51719,6 +54411,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51770,6 +54465,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51789,6 +54487,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51872,6 +54573,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51891,6 +54595,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -51942,6 +54649,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -51961,6 +54671,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52044,6 +54757,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52063,6 +54779,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52114,6 +54833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52133,6 +54855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52216,6 +54941,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52235,6 +54963,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52286,6 +55017,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52305,6 +55039,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52388,6 +55125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52407,6 +55147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52458,6 +55201,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52477,6 +55223,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52560,6 +55309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52579,6 +55331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52630,6 +55385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52649,6 +55407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52732,6 +55493,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52751,6 +55515,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52802,6 +55569,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52821,6 +55591,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52904,6 +55677,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52923,6 +55699,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -52974,6 +55753,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -52993,6 +55775,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53076,6 +55861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53095,6 +55883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53146,6 +55937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53165,6 +55959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53248,6 +56045,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53267,6 +56067,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53318,6 +56121,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53337,6 +56143,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53420,6 +56229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53439,6 +56251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53490,6 +56305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53509,6 +56327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53592,6 +56413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53611,6 +56435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53662,6 +56489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53681,6 +56511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53764,6 +56597,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53783,6 +56619,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53834,6 +56673,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53853,6 +56695,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -53943,6 +56788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -53962,6 +56810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54013,6 +56864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54032,6 +56886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54115,6 +56972,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54134,6 +56994,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54185,6 +57048,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54204,6 +57070,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54287,6 +57156,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54306,6 +57178,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54357,6 +57232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54376,6 +57254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54459,6 +57340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54478,6 +57362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54529,6 +57416,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54548,6 +57438,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54631,6 +57524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54650,6 +57546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54701,6 +57600,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54720,6 +57622,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54803,6 +57708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54822,6 +57730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54873,6 +57784,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54892,6 +57806,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -54975,6 +57892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -54994,6 +57914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55045,6 +57968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55064,6 +57990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55147,6 +58076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55166,6 +58098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55217,6 +58152,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55236,6 +58174,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55319,6 +58260,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55338,6 +58282,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55389,6 +58336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55408,6 +58358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55491,6 +58444,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55510,6 +58466,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55561,6 +58520,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55580,6 +58542,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55663,6 +58628,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55682,6 +58650,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55733,6 +58704,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55752,6 +58726,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55835,6 +58812,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55854,6 +58834,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -55905,6 +58888,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -55924,6 +58910,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56007,6 +58996,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56026,6 +59018,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56077,6 +59072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56096,6 +59094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56179,6 +59180,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56198,6 +59202,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56249,6 +59256,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56268,6 +59278,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56351,6 +59364,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56370,6 +59386,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56421,6 +59440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56440,6 +59462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56523,6 +59548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56542,6 +59570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56593,6 +59624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56612,6 +59646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56695,6 +59732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56714,6 +59754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56765,6 +59808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56784,6 +59830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56867,6 +59916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56886,6 +59938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -56937,6 +59992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -56956,6 +60014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57039,6 +60100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57058,6 +60122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57109,6 +60176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57128,6 +60198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57211,6 +60284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57230,6 +60306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57281,6 +60360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57300,6 +60382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57383,6 +60468,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57402,6 +60490,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57453,6 +60544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57472,6 +60566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57555,6 +60652,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57574,6 +60674,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57625,6 +60728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57644,6 +60750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57727,6 +60836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57746,6 +60858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57797,6 +60912,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57816,6 +60934,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57899,6 +61020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57918,6 +61042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -57969,6 +61096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -57988,6 +61118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58071,6 +61204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58090,6 +61226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58141,6 +61280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58160,6 +61302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58243,6 +61388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58262,6 +61410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58313,6 +61464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58332,6 +61486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58415,6 +61572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58434,6 +61594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58485,6 +61648,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58504,6 +61670,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58587,6 +61756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58606,6 +61778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58657,6 +61832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58676,6 +61854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58759,6 +61940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58778,6 +61962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58829,6 +62016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58848,6 +62038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -58931,6 +62124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -58950,6 +62146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -59001,6 +62200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -59020,6 +62222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -59718,6 +62923,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: PolarChart @@ -59751,6 +62962,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -59789,6 +63001,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -60412,6 +63625,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -60605,6 +63819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -60624,6 +63841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -60674,6 +63894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -60693,6 +63916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -60782,6 +64008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -60801,6 +64030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -60852,6 +64084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -60871,6 +64106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -60949,6 +64187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -60968,6 +64209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61019,6 +64263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61038,6 +64285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61116,6 +64366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61135,6 +64388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61186,6 +64442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61205,6 +64464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61283,6 +64545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61302,6 +64567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61353,6 +64621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61372,6 +64643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61450,6 +64724,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61469,6 +64746,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61520,6 +64800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61539,6 +64822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61617,6 +64903,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61636,6 +64925,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61687,6 +64979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61706,6 +65001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61784,6 +65082,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61803,6 +65104,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61854,6 +65158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61873,6 +65180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -61951,6 +65261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -61970,6 +65283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62021,6 +65337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62040,6 +65359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62118,6 +65440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62137,6 +65462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62188,6 +65516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62207,6 +65538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62285,6 +65619,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62304,6 +65641,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62355,6 +65695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62374,6 +65717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62452,6 +65798,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62471,6 +65820,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62522,6 +65874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62541,6 +65896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62619,6 +65977,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62638,6 +65999,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62689,6 +66053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62708,6 +66075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62786,6 +66156,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62805,6 +66178,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62856,6 +66232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62875,6 +66254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -62953,6 +66335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -62972,6 +66357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63023,6 +66411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63042,6 +66433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63120,6 +66514,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63139,6 +66536,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63190,6 +66590,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63209,6 +66612,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63287,6 +66693,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63306,6 +66715,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63357,6 +66769,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63376,6 +66791,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63454,6 +66872,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63473,6 +66894,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63524,6 +66948,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63543,6 +66970,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63621,6 +67051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63640,6 +67073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63691,6 +67127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63710,6 +67149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63788,6 +67230,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63807,6 +67252,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63858,6 +67306,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63877,6 +67328,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -63955,6 +67409,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -63974,6 +67431,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64025,6 +67485,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64044,6 +67507,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64122,6 +67588,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64141,6 +67610,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64192,6 +67664,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64211,6 +67686,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64289,6 +67767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64308,6 +67789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64359,6 +67843,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64378,6 +67865,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64456,6 +67946,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64475,6 +67968,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64526,6 +68022,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64545,6 +68044,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64623,6 +68125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64642,6 +68147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64693,6 +68201,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64712,6 +68223,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64790,6 +68304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64809,6 +68326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64860,6 +68380,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64879,6 +68402,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -64957,6 +68483,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -64976,6 +68505,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65027,6 +68559,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65046,6 +68581,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65124,6 +68662,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65143,6 +68684,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65194,6 +68738,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65213,6 +68760,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65291,6 +68841,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65310,6 +68863,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65361,6 +68917,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65380,6 +68939,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65458,6 +69020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65477,6 +69042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65528,6 +69096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65547,6 +69118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65625,6 +69199,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65644,6 +69221,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65695,6 +69275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65714,6 +69297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65792,6 +69378,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65811,6 +69400,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65862,6 +69454,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65881,6 +69476,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -65959,6 +69557,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -65978,6 +69579,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66029,6 +69633,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66048,6 +69655,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66126,6 +69736,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66145,6 +69758,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66196,6 +69812,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66215,6 +69834,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66293,6 +69915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66312,6 +69937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66363,6 +69991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66382,6 +70013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66460,6 +70094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66479,6 +70116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66530,6 +70170,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66549,6 +70192,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66627,6 +70273,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66646,6 +70295,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66697,6 +70349,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66716,6 +70371,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66794,6 +70452,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66813,6 +70474,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66864,6 +70528,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66883,6 +70550,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -66961,6 +70631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -66980,6 +70653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67031,6 +70707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67050,6 +70729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67128,6 +70810,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67147,6 +70832,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67198,6 +70886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67217,6 +70908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67295,6 +70989,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67314,6 +71011,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67365,6 +71065,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67384,6 +71087,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67462,6 +71168,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67481,6 +71190,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67532,6 +71244,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67551,6 +71266,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67629,6 +71347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67648,6 +71369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67699,6 +71423,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67718,6 +71445,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67796,6 +71526,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67815,6 +71548,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67866,6 +71602,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67885,6 +71624,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -67963,6 +71705,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -67982,6 +71727,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68033,6 +71781,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68052,6 +71803,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68130,6 +71884,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68149,6 +71906,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68200,6 +71960,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68219,6 +71982,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68297,6 +72063,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68316,6 +72085,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68367,6 +72139,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68386,6 +72161,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68464,6 +72242,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68483,6 +72264,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68534,6 +72318,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68553,6 +72340,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68631,6 +72421,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68650,6 +72443,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68701,6 +72497,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68720,6 +72519,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68798,6 +72600,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68817,6 +72622,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68868,6 +72676,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68887,6 +72698,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -68965,6 +72779,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -68984,6 +72801,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69035,6 +72855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69054,6 +72877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69132,6 +72958,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69151,6 +72980,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69202,6 +73034,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69221,6 +73056,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69299,6 +73137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69318,6 +73159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69369,6 +73213,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69388,6 +73235,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69466,6 +73316,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69485,6 +73338,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69536,6 +73392,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69555,6 +73414,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69633,6 +73495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69652,6 +73517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69703,6 +73571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69722,6 +73593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69800,6 +73674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69819,6 +73696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69870,6 +73750,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69889,6 +73772,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -69967,6 +73853,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -69986,6 +73875,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70037,6 +73929,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70056,6 +73951,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70134,6 +74032,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70153,6 +74054,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70204,6 +74108,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70223,6 +74130,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70301,6 +74211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70320,6 +74233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70371,6 +74287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70390,6 +74309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70468,6 +74390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70487,6 +74412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70538,6 +74466,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70557,6 +74488,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70635,6 +74569,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70654,6 +74591,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70705,6 +74645,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70724,6 +74667,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70802,6 +74748,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70821,6 +74770,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70872,6 +74824,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70891,6 +74846,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -70969,6 +74927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -70988,6 +74949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71039,6 +75003,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71058,6 +75025,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71136,6 +75106,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71155,6 +75128,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71206,6 +75182,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71225,6 +75204,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71303,6 +75285,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71322,6 +75307,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71373,6 +75361,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71392,6 +75383,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71470,6 +75464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71489,6 +75486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71540,6 +75540,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71559,6 +75562,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71637,6 +75643,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71656,6 +75665,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71707,6 +75719,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71726,6 +75741,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71804,6 +75822,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71823,6 +75844,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71874,6 +75898,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71893,6 +75920,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -71971,6 +76001,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -71990,6 +76023,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72041,6 +76077,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72060,6 +76099,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72138,6 +76180,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72157,6 +76202,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72208,6 +76256,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72227,6 +76278,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72305,6 +76359,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72324,6 +76381,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72375,6 +76435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72394,6 +76457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72472,6 +76538,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72491,6 +76560,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72542,6 +76614,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72561,6 +76636,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72639,6 +76717,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72658,6 +76739,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72709,6 +76793,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72728,6 +76815,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72806,6 +76896,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72825,6 +76918,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72876,6 +76972,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72895,6 +76994,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -72973,6 +77075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -72992,6 +77097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73043,6 +77151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73062,6 +77173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73140,6 +77254,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73159,6 +77276,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73210,6 +77330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73229,6 +77352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73307,6 +77433,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73326,6 +77455,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73377,6 +77509,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73396,6 +77531,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73474,6 +77612,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73493,6 +77634,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73544,6 +77688,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73563,6 +77710,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73641,6 +77791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73660,6 +77813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73711,6 +77867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73730,6 +77889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73808,6 +77970,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73827,6 +77992,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73878,6 +78046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73897,6 +78068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -73975,6 +78149,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -73994,6 +78171,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74045,6 +78225,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74064,6 +78247,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74142,6 +78328,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74161,6 +78350,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74212,6 +78404,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74231,6 +78426,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74309,6 +78507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74328,6 +78529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74379,6 +78583,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74398,6 +78605,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74476,6 +78686,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74495,6 +78708,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74546,6 +78762,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74565,6 +78784,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74643,6 +78865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74662,6 +78887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74713,6 +78941,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74732,6 +78963,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74810,6 +79044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74829,6 +79066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74880,6 +79120,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74899,6 +79142,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -74977,6 +79223,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -74996,6 +79245,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75047,6 +79299,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75066,6 +79321,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75144,6 +79402,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75163,6 +79424,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75214,6 +79478,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75233,6 +79500,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75311,6 +79581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75330,6 +79603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75381,6 +79657,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75400,6 +79679,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75478,6 +79760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75497,6 +79782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75548,6 +79836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75567,6 +79858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75645,6 +79939,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75664,6 +79961,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75715,6 +80015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75734,6 +80037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75812,6 +80118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75831,6 +80140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75882,6 +80194,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75901,6 +80216,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -75979,6 +80297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -75998,6 +80319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76049,6 +80373,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76068,6 +80395,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76146,6 +80476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76165,6 +80498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76216,6 +80552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76235,6 +80574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76313,6 +80655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76332,6 +80677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76383,6 +80731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76402,6 +80753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76480,6 +80834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76499,6 +80856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76550,6 +80910,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76569,6 +80932,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76647,6 +81013,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76666,6 +81035,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76717,6 +81089,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76736,6 +81111,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76814,6 +81192,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76833,6 +81214,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76884,6 +81268,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -76903,6 +81290,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -76981,6 +81371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77000,6 +81393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77051,6 +81447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77070,6 +81469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77148,6 +81550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77167,6 +81572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77218,6 +81626,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77237,6 +81648,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77315,6 +81729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77334,6 +81751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77385,6 +81805,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77404,6 +81827,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77482,6 +81908,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77501,6 +81930,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77552,6 +81984,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77571,6 +82006,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77649,6 +82087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77668,6 +82109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77719,6 +82163,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77738,6 +82185,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77816,6 +82266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77835,6 +82288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77886,6 +82342,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -77905,6 +82364,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -77983,6 +82445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78002,6 +82467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78053,6 +82521,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78072,6 +82543,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78150,6 +82624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78169,6 +82646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78220,6 +82700,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78239,6 +82722,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78317,6 +82803,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78336,6 +82825,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78387,6 +82879,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78406,6 +82901,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78484,6 +82982,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78503,6 +83004,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78554,6 +83058,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78573,6 +83080,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78651,6 +83161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78670,6 +83183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78721,6 +83237,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78740,6 +83259,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78818,6 +83340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78837,6 +83362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78888,6 +83416,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -78907,6 +83438,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -78985,6 +83519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79004,6 +83541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79055,6 +83595,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79074,6 +83617,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79152,6 +83698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79171,6 +83720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79222,6 +83774,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79241,6 +83796,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79319,6 +83877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79338,6 +83899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79389,6 +83953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79408,6 +83975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79486,6 +84056,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79505,6 +84078,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79556,6 +84132,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79575,6 +84154,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79653,6 +84235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79672,6 +84257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79723,6 +84311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79742,6 +84333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79820,6 +84414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79839,6 +84436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79890,6 +84490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -79909,6 +84512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -79987,6 +84593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80006,6 +84615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80057,6 +84669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80076,6 +84691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80154,6 +84772,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80173,6 +84794,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80224,6 +84848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80243,6 +84870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80321,6 +84951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80340,6 +84973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80391,6 +85027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80410,6 +85049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80488,6 +85130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80507,6 +85152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80558,6 +85206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80577,6 +85228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80655,6 +85309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80674,6 +85331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80725,6 +85385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80744,6 +85407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80822,6 +85488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80841,6 +85510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80892,6 +85564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -80911,6 +85586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -80989,6 +85667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81008,6 +85689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81059,6 +85743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81078,6 +85765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81156,6 +85846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81175,6 +85868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81226,6 +85922,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81245,6 +85944,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81323,6 +86025,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81342,6 +86047,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81393,6 +86101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81412,6 +86123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81490,6 +86204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81509,6 +86226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81560,6 +86280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81579,6 +86302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81657,6 +86383,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81676,6 +86405,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81727,6 +86459,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81746,6 +86481,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81824,6 +86562,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81843,6 +86584,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81894,6 +86638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -81913,6 +86660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -81991,6 +86741,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82010,6 +86763,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82061,6 +86817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82080,6 +86839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82158,6 +86920,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82177,6 +86942,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82228,6 +86996,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82247,6 +87018,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82325,6 +87099,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82344,6 +87121,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82395,6 +87175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82414,6 +87197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82492,6 +87278,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82511,6 +87300,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82562,6 +87354,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82581,6 +87376,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82659,6 +87457,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82678,6 +87479,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82729,6 +87533,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82748,6 +87555,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82826,6 +87636,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82845,6 +87658,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82896,6 +87712,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -82915,6 +87734,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -82993,6 +87815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83012,6 +87837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83063,6 +87891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83082,6 +87913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83160,6 +87994,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83179,6 +88016,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83230,6 +88070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83249,6 +88092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83327,6 +88173,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83346,6 +88195,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83397,6 +88249,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83416,6 +88271,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83494,6 +88352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83513,6 +88374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83564,6 +88428,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83583,6 +88450,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83661,6 +88531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83680,6 +88553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83731,6 +88607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83750,6 +88629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83828,6 +88710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83847,6 +88732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83898,6 +88786,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -83917,6 +88808,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -83995,6 +88889,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84014,6 +88911,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84065,6 +88965,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84084,6 +88987,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84162,6 +89068,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84181,6 +89090,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84232,6 +89144,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84251,6 +89166,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84329,6 +89247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84348,6 +89269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84399,6 +89323,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84418,6 +89345,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84496,6 +89426,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84515,6 +89448,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84566,6 +89502,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84585,6 +89524,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84663,6 +89605,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84682,6 +89627,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84733,6 +89681,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84752,6 +89703,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84830,6 +89784,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84849,6 +89806,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84900,6 +89860,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -84919,6 +89882,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -84997,6 +89963,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85016,6 +89985,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85067,6 +90039,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85086,6 +90061,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85164,6 +90142,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85183,6 +90164,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85234,6 +90218,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85253,6 +90240,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85331,6 +90321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85350,6 +90343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85401,6 +90397,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85420,6 +90419,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85498,6 +90500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85517,6 +90522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85568,6 +90576,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85587,6 +90598,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85665,6 +90679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85684,6 +90701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85735,6 +90755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85754,6 +90777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85832,6 +90858,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85851,6 +90880,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85902,6 +90934,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -85921,6 +90956,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -85999,6 +91037,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86018,6 +91059,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86069,6 +91113,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86088,6 +91135,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86166,6 +91216,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86185,6 +91238,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86236,6 +91292,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86255,6 +91314,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86333,6 +91395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86352,6 +91417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86403,6 +91471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86422,6 +91493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86500,6 +91574,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86519,6 +91596,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86570,6 +91650,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86589,6 +91672,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86667,6 +91753,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86686,6 +91775,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86737,6 +91829,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86756,6 +91851,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86834,6 +91932,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86853,6 +91954,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -86904,6 +92008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -86923,6 +92030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87001,6 +92111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87020,6 +92133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87071,6 +92187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87090,6 +92209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87168,6 +92290,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87187,6 +92312,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87238,6 +92366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87257,6 +92388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87335,6 +92469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87354,6 +92491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87405,6 +92545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87424,6 +92567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87502,6 +92648,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87521,6 +92670,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87572,6 +92724,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87591,6 +92746,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87669,6 +92827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87688,6 +92849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87739,6 +92903,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87758,6 +92925,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87836,6 +93006,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87855,6 +93028,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -87906,6 +93082,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -87925,6 +93104,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88003,6 +93185,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88022,6 +93207,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88073,6 +93261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88092,6 +93283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88170,6 +93364,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88189,6 +93386,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88240,6 +93440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88259,6 +93462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88337,6 +93543,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88356,6 +93565,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88407,6 +93619,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88426,6 +93641,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88504,6 +93722,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88523,6 +93744,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88574,6 +93798,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88593,6 +93820,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88671,6 +93901,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88690,6 +93923,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88741,6 +93977,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88760,6 +93999,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88838,6 +94080,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88857,6 +94102,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -88908,6 +94156,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -88927,6 +94178,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89005,6 +94259,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89024,6 +94281,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89075,6 +94335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89094,6 +94357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89172,6 +94438,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89191,6 +94460,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89242,6 +94514,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89261,6 +94536,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89339,6 +94617,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89358,6 +94639,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89409,6 +94693,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89428,6 +94715,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89506,6 +94796,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89525,6 +94818,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89576,6 +94872,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89595,6 +94894,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89673,6 +94975,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89692,6 +94997,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89743,6 +95051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89762,6 +95073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89840,6 +95154,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89859,6 +95176,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -89910,6 +95230,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -89929,6 +95252,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90007,6 +95333,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90026,6 +95355,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90077,6 +95409,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90096,6 +95431,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90174,6 +95512,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90193,6 +95534,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90244,6 +95588,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90263,6 +95610,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90341,6 +95691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90360,6 +95713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90411,6 +95767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90430,6 +95789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90508,6 +95870,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90527,6 +95892,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90578,6 +95946,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90597,6 +95968,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90675,6 +96049,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90694,6 +96071,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90745,6 +96125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90764,6 +96147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90842,6 +96228,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90861,6 +96250,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -90912,6 +96304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -90931,6 +96326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91009,6 +96407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91028,6 +96429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91079,6 +96483,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91098,6 +96505,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91176,6 +96586,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91195,6 +96608,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91246,6 +96662,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91265,6 +96684,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91343,6 +96765,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91362,6 +96787,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91413,6 +96841,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91432,6 +96863,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91510,6 +96944,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91529,6 +96966,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91580,6 +97020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91599,6 +97042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91677,6 +97123,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91696,6 +97145,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91747,6 +97199,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91766,6 +97221,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91844,6 +97302,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91863,6 +97324,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -91914,6 +97378,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -91933,6 +97400,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92011,6 +97481,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92030,6 +97503,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92081,6 +97557,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92100,6 +97579,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92178,6 +97660,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92197,6 +97682,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92248,6 +97736,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92267,6 +97758,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92345,6 +97839,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92364,6 +97861,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92415,6 +97915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92434,6 +97937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92512,6 +98018,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92531,6 +98040,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92582,6 +98094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92601,6 +98116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92679,6 +98197,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92698,6 +98219,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92749,6 +98273,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92768,6 +98295,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92846,6 +98376,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92865,6 +98398,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -92916,6 +98452,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -92935,6 +98474,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93013,6 +98555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93032,6 +98577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93083,6 +98631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93102,6 +98653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93180,6 +98734,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93199,6 +98756,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93250,6 +98810,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93269,6 +98832,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93347,6 +98913,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93366,6 +98935,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93417,6 +98989,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93436,6 +99011,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93514,6 +99092,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93533,6 +99114,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93584,6 +99168,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93603,6 +99190,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93681,6 +99271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93700,6 +99293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93751,6 +99347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93770,6 +99369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93848,6 +99450,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93867,6 +99472,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -93918,6 +99526,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -93937,6 +99548,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94015,6 +99629,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94034,6 +99651,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94085,6 +99705,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94104,6 +99727,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94182,6 +99808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94201,6 +99830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94252,6 +99884,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94271,6 +99906,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94349,6 +99987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94368,6 +100009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94419,6 +100063,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94438,6 +100085,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94516,6 +100166,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94535,6 +100188,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94586,6 +100242,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94605,6 +100264,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94683,6 +100345,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94702,6 +100367,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94753,6 +100421,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94772,6 +100443,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94850,6 +100524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94869,6 +100546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -94920,6 +100600,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -94939,6 +100622,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95017,6 +100703,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95036,6 +100725,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95087,6 +100779,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95106,6 +100801,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95184,6 +100882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95203,6 +100904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95254,6 +100958,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95273,6 +100980,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95351,6 +101061,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95370,6 +101083,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95421,6 +101137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95440,6 +101159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95518,6 +101240,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95537,6 +101262,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95588,6 +101316,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95607,6 +101338,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95685,6 +101419,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95704,6 +101441,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95755,6 +101495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95774,6 +101517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95852,6 +101598,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95871,6 +101620,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -95922,6 +101674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -95941,6 +101696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96019,6 +101777,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96038,6 +101799,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96089,6 +101853,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96108,6 +101875,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96186,6 +101956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96205,6 +101978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96256,6 +102032,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96275,6 +102054,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96353,6 +102135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96372,6 +102157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96423,6 +102211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96442,6 +102233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96520,6 +102314,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96539,6 +102336,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96590,6 +102390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96609,6 +102412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96687,6 +102493,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96706,6 +102515,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96757,6 +102569,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96776,6 +102591,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96854,6 +102672,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96873,6 +102694,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -96924,6 +102748,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -96943,6 +102770,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97021,6 +102851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97040,6 +102873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97091,6 +102927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97110,6 +102949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97188,6 +103030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97207,6 +103052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97258,6 +103106,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97277,6 +103128,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97355,6 +103209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97374,6 +103231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97425,6 +103285,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97444,6 +103307,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97522,6 +103388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97541,6 +103410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97592,6 +103464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97611,6 +103486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97689,6 +103567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97708,6 +103589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97759,6 +103643,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97778,6 +103665,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97856,6 +103746,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97875,6 +103768,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -97926,6 +103822,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -97945,6 +103844,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98023,6 +103925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98042,6 +103947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98093,6 +104001,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98112,6 +104023,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98190,6 +104104,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98209,6 +104126,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98260,6 +104180,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98279,6 +104202,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98357,6 +104283,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98376,6 +104305,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98427,6 +104359,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98446,6 +104381,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98524,6 +104462,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98543,6 +104484,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98594,6 +104538,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98613,6 +104560,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98691,6 +104641,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98710,6 +104663,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98761,6 +104717,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98780,6 +104739,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98858,6 +104820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98877,6 +104842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -98928,6 +104896,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -98947,6 +104918,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99025,6 +104999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99044,6 +105021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99095,6 +105075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99114,6 +105097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99192,6 +105178,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99211,6 +105200,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99262,6 +105254,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99281,6 +105276,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99359,6 +105357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99378,6 +105379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99429,6 +105433,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99448,6 +105455,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99526,6 +105536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99545,6 +105558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99596,6 +105612,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99615,6 +105634,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99693,6 +105715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99712,6 +105737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99763,6 +105791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99782,6 +105813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99860,6 +105894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99879,6 +105916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -99930,6 +105970,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -99949,6 +105992,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100027,6 +106073,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100046,6 +106095,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100097,6 +106149,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100116,6 +106171,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100194,6 +106252,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100213,6 +106274,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100264,6 +106328,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100283,6 +106350,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100361,6 +106431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100380,6 +106453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100431,6 +106507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100450,6 +106529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100528,6 +106610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100547,6 +106632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100598,6 +106686,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100617,6 +106708,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100695,6 +106789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100714,6 +106811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100765,6 +106865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100784,6 +106887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100862,6 +106968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100881,6 +106990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -100932,6 +107044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -100951,6 +107066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101029,6 +107147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101048,6 +107169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101099,6 +107223,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101118,6 +107245,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101196,6 +107326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101215,6 +107348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101266,6 +107402,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101285,6 +107424,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101363,6 +107505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101382,6 +107527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101433,6 +107581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101452,6 +107603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101530,6 +107684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101549,6 +107706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101600,6 +107760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101619,6 +107782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101697,6 +107863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101716,6 +107885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101767,6 +107939,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101786,6 +107961,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101864,6 +108042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101883,6 +108064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -101934,6 +108118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -101953,6 +108140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102031,6 +108221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102050,6 +108243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102101,6 +108297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102120,6 +108319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102198,6 +108400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102217,6 +108422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102268,6 +108476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102287,6 +108498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102365,6 +108579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102384,6 +108601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102435,6 +108655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102454,6 +108677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102532,6 +108758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102551,6 +108780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102602,6 +108834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102621,6 +108856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102699,6 +108937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102718,6 +108959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102769,6 +109013,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102788,6 +109035,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102866,6 +109116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102885,6 +109138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -102936,6 +109192,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -102955,6 +109214,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103033,6 +109295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103052,6 +109317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103103,6 +109371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103122,6 +109393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103200,6 +109474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103219,6 +109496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103270,6 +109550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103289,6 +109572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103367,6 +109653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103386,6 +109675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103437,6 +109729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103456,6 +109751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103534,6 +109832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103553,6 +109854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103604,6 +109908,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103623,6 +109930,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103701,6 +110011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103720,6 +110033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103771,6 +110087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103790,6 +110109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103868,6 +110190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103887,6 +110212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -103938,6 +110266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -103957,6 +110288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104035,6 +110369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104054,6 +110391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104105,6 +110445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104124,6 +110467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104202,6 +110548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104221,6 +110570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104272,6 +110624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104291,6 +110646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104369,6 +110727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104388,6 +110749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104439,6 +110803,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104458,6 +110825,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104536,6 +110906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104555,6 +110928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104606,6 +110982,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104625,6 +111004,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104703,6 +111085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104722,6 +111107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104773,6 +111161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104792,6 +111183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104870,6 +111264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104889,6 +111286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -104940,6 +111340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -104959,6 +111362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105037,6 +111443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105056,6 +111465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105107,6 +111519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105126,6 +111541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105204,6 +111622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105223,6 +111644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105274,6 +111698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105293,6 +111720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105371,6 +111801,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105390,6 +111823,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105441,6 +111877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105460,6 +111899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105538,6 +111980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105557,6 +112002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105608,6 +112056,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105627,6 +112078,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105705,6 +112159,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105724,6 +112181,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105775,6 +112235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105794,6 +112257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105872,6 +112338,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105891,6 +112360,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -105942,6 +112414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -105961,6 +112436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106039,6 +112517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106058,6 +112539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106109,6 +112593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106128,6 +112615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106206,6 +112696,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106225,6 +112718,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106276,6 +112772,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106295,6 +112794,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106373,6 +112875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106392,6 +112897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106443,6 +112951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106462,6 +112973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106540,6 +113054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106559,6 +113076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106610,6 +113130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106629,6 +113152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106707,6 +113233,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106726,6 +113255,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106777,6 +113309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106796,6 +113331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106874,6 +113412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106893,6 +113434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -106944,6 +113488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -106963,6 +113510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107041,6 +113591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107060,6 +113613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107111,6 +113667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107130,6 +113689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107208,6 +113770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107227,6 +113792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107278,6 +113846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107297,6 +113868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107375,6 +113949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107394,6 +113971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107445,6 +114025,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107464,6 +114047,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107542,6 +114128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107561,6 +114150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107612,6 +114204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107631,6 +114226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107709,6 +114307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107728,6 +114329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107779,6 +114383,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107798,6 +114405,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107876,6 +114486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107895,6 +114508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -107946,6 +114562,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -107965,6 +114584,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108043,6 +114665,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108062,6 +114687,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108113,6 +114741,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108132,6 +114763,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108210,6 +114844,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108229,6 +114866,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108280,6 +114920,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108299,6 +114942,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108377,6 +115023,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108396,6 +115045,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108447,6 +115099,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108466,6 +115121,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108544,6 +115202,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108563,6 +115224,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108614,6 +115278,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108633,6 +115300,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108711,6 +115381,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108730,6 +115403,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108781,6 +115457,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108800,6 +115479,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108878,6 +115560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108897,6 +115582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -108948,6 +115636,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -108967,6 +115658,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109045,6 +115739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109064,6 +115761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109115,6 +115815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109134,6 +115837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109212,6 +115918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109231,6 +115940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109282,6 +115994,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109301,6 +116016,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109379,6 +116097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109398,6 +116119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109449,6 +116173,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109468,6 +116195,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109546,6 +116276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109565,6 +116298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109616,6 +116352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109635,6 +116374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109713,6 +116455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109732,6 +116477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109783,6 +116531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109802,6 +116553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109880,6 +116634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109899,6 +116656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -109950,6 +116710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -109969,6 +116732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110047,6 +116813,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110066,6 +116835,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110117,6 +116889,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110136,6 +116911,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110214,6 +116992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110233,6 +117014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110284,6 +117068,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110303,6 +117090,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110381,6 +117171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110400,6 +117193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110451,6 +117247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110470,6 +117269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110548,6 +117350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110567,6 +117372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110618,6 +117426,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110637,6 +117448,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110715,6 +117529,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110734,6 +117551,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110785,6 +117605,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110804,6 +117627,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110882,6 +117708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110901,6 +117730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -110952,6 +117784,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -110971,6 +117806,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111049,6 +117887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111068,6 +117909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111119,6 +117963,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111138,6 +117985,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111216,6 +118066,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111235,6 +118088,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111286,6 +118142,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111305,6 +118164,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111383,6 +118245,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111402,6 +118267,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111453,6 +118321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111472,6 +118343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111550,6 +118424,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111569,6 +118446,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111620,6 +118500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111639,6 +118522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111717,6 +118603,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111736,6 +118625,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111787,6 +118679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111806,6 +118701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111884,6 +118782,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111903,6 +118804,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -111954,6 +118858,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -111973,6 +118880,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112051,6 +118961,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112070,6 +118983,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112121,6 +119037,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112140,6 +119059,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112218,6 +119140,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112237,6 +119162,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112288,6 +119216,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112307,6 +119238,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112385,6 +119319,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112404,6 +119341,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112455,6 +119395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112474,6 +119417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112552,6 +119498,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112571,6 +119520,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112622,6 +119574,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112641,6 +119596,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112719,6 +119677,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112738,6 +119699,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112789,6 +119753,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112808,6 +119775,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112886,6 +119856,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112905,6 +119878,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -112956,6 +119932,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -112975,6 +119954,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113053,6 +120035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113072,6 +120057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113123,6 +120111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113142,6 +120133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113220,6 +120214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113239,6 +120236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113290,6 +120290,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113309,6 +120312,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113387,6 +120393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113406,6 +120415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113457,6 +120469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113476,6 +120491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113554,6 +120572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113573,6 +120594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113624,6 +120648,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113643,6 +120670,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113721,6 +120751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113740,6 +120773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113791,6 +120827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113810,6 +120849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113888,6 +120930,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113907,6 +120952,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -113958,6 +121006,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -113977,6 +121028,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114055,6 +121109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114074,6 +121131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114125,6 +121185,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114144,6 +121207,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114222,6 +121288,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114241,6 +121310,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114292,6 +121364,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114311,6 +121386,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114389,6 +121467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114408,6 +121489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114459,6 +121543,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114478,6 +121565,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114556,6 +121646,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114575,6 +121668,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114626,6 +121722,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114645,6 +121744,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114723,6 +121825,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114742,6 +121847,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114793,6 +121901,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114812,6 +121923,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114890,6 +122004,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114909,6 +122026,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -114960,6 +122080,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -114979,6 +122102,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115057,6 +122183,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115076,6 +122205,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115127,6 +122259,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115146,6 +122281,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115224,6 +122362,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115243,6 +122384,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115294,6 +122438,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115313,6 +122460,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115391,6 +122541,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115410,6 +122563,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115461,6 +122617,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115480,6 +122639,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115558,6 +122720,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115577,6 +122742,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115628,6 +122796,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115647,6 +122818,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115725,6 +122899,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115744,6 +122921,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115795,6 +122975,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115814,6 +122997,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115892,6 +123078,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115911,6 +123100,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -115962,6 +123154,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -115981,6 +123176,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116059,6 +123257,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116078,6 +123279,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116129,6 +123333,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116148,6 +123355,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116226,6 +123436,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116245,6 +123458,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116296,6 +123512,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116315,6 +123534,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116393,6 +123615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116412,6 +123637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116463,6 +123691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116482,6 +123713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116560,6 +123794,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116579,6 +123816,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116630,6 +123870,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116649,6 +123892,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116727,6 +123973,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116746,6 +123995,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116797,6 +124049,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116816,6 +124071,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116894,6 +124152,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116913,6 +124174,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -116964,6 +124228,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -116983,6 +124250,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117061,6 +124331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117080,6 +124353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117131,6 +124407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117150,6 +124429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117228,6 +124510,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117247,6 +124532,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117298,6 +124586,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117317,6 +124608,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117395,6 +124689,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117414,6 +124711,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117465,6 +124765,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117484,6 +124787,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117562,6 +124868,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117581,6 +124890,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117632,6 +124944,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117651,6 +124966,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117729,6 +125047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117748,6 +125069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117799,6 +125123,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117818,6 +125145,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117896,6 +125226,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117915,6 +125248,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -117966,6 +125302,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -117985,6 +125324,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118063,6 +125405,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118082,6 +125427,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118133,6 +125481,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118152,6 +125503,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118230,6 +125584,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118249,6 +125606,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118300,6 +125660,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118319,6 +125682,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118397,6 +125763,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118416,6 +125785,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118467,6 +125839,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118486,6 +125861,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118564,6 +125942,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118583,6 +125964,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118634,6 +126018,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118653,6 +126040,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118731,6 +126121,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118750,6 +126143,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118801,6 +126197,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118820,6 +126219,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118898,6 +126300,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118917,6 +126322,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -118968,6 +126376,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -118987,6 +126398,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119065,6 +126479,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119084,6 +126501,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119135,6 +126555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119154,6 +126577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119232,6 +126658,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119251,6 +126680,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119302,6 +126734,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119321,6 +126756,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119399,6 +126837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119418,6 +126859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119469,6 +126913,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119488,6 +126935,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119566,6 +127016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119585,6 +127038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119636,6 +127092,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119655,6 +127114,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119733,6 +127195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119752,6 +127217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119803,6 +127271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119822,6 +127293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119900,6 +127374,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119919,6 +127396,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -119970,6 +127450,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -119989,6 +127472,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120067,6 +127553,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120086,6 +127575,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120137,6 +127629,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120156,6 +127651,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120234,6 +127732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120253,6 +127754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120304,6 +127808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120323,6 +127830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120401,6 +127911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120420,6 +127933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120471,6 +127987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120490,6 +128009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120568,6 +128090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120587,6 +128112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120638,6 +128166,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120657,6 +128188,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120735,6 +128269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120754,6 +128291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120805,6 +128345,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120824,6 +128367,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120902,6 +128448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120921,6 +128470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -120972,6 +128524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -120991,6 +128546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121088,6 +128646,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -121281,6 +128840,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121300,6 +128862,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121350,6 +128915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121369,6 +128937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121458,6 +129029,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121477,6 +129051,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121528,6 +129105,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121547,6 +129127,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121625,6 +129208,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121644,6 +129230,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121695,6 +129284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121714,6 +129306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121792,6 +129387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121811,6 +129409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121862,6 +129463,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121881,6 +129485,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -121959,6 +129566,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -121978,6 +129588,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122029,6 +129642,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122048,6 +129664,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122126,6 +129745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122145,6 +129767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122196,6 +129821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122215,6 +129843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122293,6 +129924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122312,6 +129946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122363,6 +130000,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122382,6 +130022,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122460,6 +130103,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122479,6 +130125,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122530,6 +130179,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122549,6 +130201,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122627,6 +130282,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122646,6 +130304,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122697,6 +130358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122716,6 +130380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122794,6 +130461,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122813,6 +130483,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122864,6 +130537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122883,6 +130559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -122961,6 +130640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -122980,6 +130662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123031,6 +130716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123050,6 +130738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123128,6 +130819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123147,6 +130841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123198,6 +130895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123217,6 +130917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123295,6 +130998,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123314,6 +131020,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123365,6 +131074,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123384,6 +131096,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123462,6 +131177,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123481,6 +131199,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123532,6 +131253,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123551,6 +131275,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123629,6 +131356,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123648,6 +131378,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123699,6 +131432,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123718,6 +131454,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123796,6 +131535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123815,6 +131557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123866,6 +131611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123885,6 +131633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -123963,6 +131714,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -123982,6 +131736,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124033,6 +131790,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124052,6 +131812,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124130,6 +131893,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124149,6 +131915,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124200,6 +131969,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124219,6 +131991,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124297,6 +132072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124316,6 +132094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124367,6 +132148,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124386,6 +132170,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124464,6 +132251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124483,6 +132273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124534,6 +132327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124553,6 +132349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124631,6 +132430,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124650,6 +132452,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124701,6 +132506,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124720,6 +132528,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124798,6 +132609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124817,6 +132631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124868,6 +132685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124887,6 +132707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -124965,6 +132788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -124984,6 +132810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125035,6 +132864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125054,6 +132886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125132,6 +132967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125151,6 +132989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125202,6 +133043,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125221,6 +133065,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125299,6 +133146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125318,6 +133168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125369,6 +133222,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125388,6 +133244,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125466,6 +133325,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125485,6 +133347,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125536,6 +133401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125555,6 +133423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125633,6 +133504,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125652,6 +133526,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125703,6 +133580,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125722,6 +133602,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125800,6 +133683,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125819,6 +133705,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125870,6 +133759,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125889,6 +133781,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -125967,6 +133862,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -125986,6 +133884,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126037,6 +133938,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126056,6 +133960,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126134,6 +134041,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126153,6 +134063,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126204,6 +134117,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126223,6 +134139,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126301,6 +134220,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126320,6 +134242,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126371,6 +134296,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126390,6 +134318,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126468,6 +134399,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126487,6 +134421,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126538,6 +134475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126557,6 +134497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126635,6 +134578,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126654,6 +134600,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126705,6 +134654,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126724,6 +134676,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126802,6 +134757,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126821,6 +134779,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126872,6 +134833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126891,6 +134855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -126969,6 +134936,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -126988,6 +134958,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127039,6 +135012,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127058,6 +135034,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127136,6 +135115,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127155,6 +135137,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127206,6 +135191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127225,6 +135213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127303,6 +135294,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127322,6 +135316,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127373,6 +135370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127392,6 +135392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127470,6 +135473,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127489,6 +135495,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127540,6 +135549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127559,6 +135571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127637,6 +135652,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127656,6 +135674,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127707,6 +135728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127726,6 +135750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127804,6 +135831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127823,6 +135853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127874,6 +135907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127893,6 +135929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -127971,6 +136010,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -127990,6 +136032,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128041,6 +136086,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128060,6 +136108,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128138,6 +136189,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128157,6 +136211,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128208,6 +136265,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128227,6 +136287,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128305,6 +136368,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128324,6 +136390,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128375,6 +136444,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128394,6 +136466,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128472,6 +136547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128491,6 +136569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128542,6 +136623,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128561,6 +136645,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128639,6 +136726,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128658,6 +136748,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128709,6 +136802,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128728,6 +136824,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128806,6 +136905,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128825,6 +136927,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128876,6 +136981,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128895,6 +137003,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -128973,6 +137084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -128992,6 +137106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129043,6 +137160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129062,6 +137182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129140,6 +137263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129159,6 +137285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129210,6 +137339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129229,6 +137361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129307,6 +137442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129326,6 +137464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129377,6 +137518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129396,6 +137540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129474,6 +137621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129493,6 +137643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129544,6 +137697,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129563,6 +137719,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129641,6 +137800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129660,6 +137822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129711,6 +137876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129730,6 +137898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129808,6 +137979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129827,6 +138001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129878,6 +138055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129897,6 +138077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -129975,6 +138158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -129994,6 +138180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130045,6 +138234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130064,6 +138256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130142,6 +138337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130161,6 +138359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130212,6 +138413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130231,6 +138435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130309,6 +138516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130328,6 +138538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130379,6 +138592,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130398,6 +138614,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130476,6 +138695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130495,6 +138717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130546,6 +138771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130565,6 +138793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130643,6 +138874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130662,6 +138896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130713,6 +138950,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130732,6 +138972,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130810,6 +139053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130829,6 +139075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130880,6 +139129,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130899,6 +139151,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -130977,6 +139232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -130996,6 +139254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131047,6 +139308,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131066,6 +139330,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131144,6 +139411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131163,6 +139433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131214,6 +139487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131233,6 +139509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131311,6 +139590,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131330,6 +139612,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131381,6 +139666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131400,6 +139688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131478,6 +139769,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131497,6 +139791,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131548,6 +139845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131567,6 +139867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131645,6 +139948,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131664,6 +139970,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131715,6 +140024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131734,6 +140046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131812,6 +140127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131831,6 +140149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131882,6 +140203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131901,6 +140225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -131979,6 +140306,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -131998,6 +140328,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132049,6 +140382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132068,6 +140404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132146,6 +140485,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132165,6 +140507,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132216,6 +140561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132235,6 +140583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132313,6 +140664,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132332,6 +140686,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132383,6 +140740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132402,6 +140762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132480,6 +140843,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132499,6 +140865,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132550,6 +140919,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132569,6 +140941,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132647,6 +141022,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132666,6 +141044,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132717,6 +141098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132736,6 +141120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132814,6 +141201,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132833,6 +141223,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132884,6 +141277,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -132903,6 +141299,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -132981,6 +141380,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133000,6 +141402,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133051,6 +141456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133070,6 +141478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133148,6 +141559,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133167,6 +141581,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133218,6 +141635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133237,6 +141657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133315,6 +141738,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133334,6 +141760,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133385,6 +141814,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133404,6 +141836,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133482,6 +141917,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133501,6 +141939,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133552,6 +141993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133571,6 +142015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133649,6 +142096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133668,6 +142118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133719,6 +142172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133738,6 +142194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133816,6 +142275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133835,6 +142297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133886,6 +142351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -133905,6 +142373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -133983,6 +142454,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134002,6 +142476,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134053,6 +142530,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134072,6 +142552,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134150,6 +142633,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134169,6 +142655,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134220,6 +142709,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134239,6 +142731,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134317,6 +142812,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134336,6 +142834,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134387,6 +142888,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134406,6 +142910,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134484,6 +142991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134503,6 +143013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134554,6 +143067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134573,6 +143089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134651,6 +143170,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134670,6 +143192,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134721,6 +143246,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134740,6 +143268,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134818,6 +143349,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134837,6 +143371,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134888,6 +143425,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -134907,6 +143447,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -134985,6 +143528,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135004,6 +143550,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135055,6 +143604,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135074,6 +143626,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135152,6 +143707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135171,6 +143729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135222,6 +143783,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135241,6 +143805,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135319,6 +143886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135338,6 +143908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135389,6 +143962,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135408,6 +143984,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135486,6 +144065,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135505,6 +144087,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135556,6 +144141,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135575,6 +144163,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135653,6 +144244,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135672,6 +144266,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135723,6 +144320,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135742,6 +144342,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135820,6 +144423,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135839,6 +144445,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135890,6 +144499,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -135909,6 +144521,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -135987,6 +144602,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136006,6 +144624,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136057,6 +144678,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136076,6 +144700,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136154,6 +144781,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136173,6 +144803,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136224,6 +144857,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136243,6 +144879,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136321,6 +144960,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136340,6 +144982,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136391,6 +145036,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136410,6 +145058,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136488,6 +145139,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136507,6 +145161,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136558,6 +145215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136577,6 +145237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136655,6 +145318,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136674,6 +145340,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136725,6 +145394,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136744,6 +145416,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136822,6 +145497,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136841,6 +145519,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136892,6 +145573,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -136911,6 +145595,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -136989,6 +145676,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137008,6 +145698,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137059,6 +145752,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137078,6 +145774,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137156,6 +145855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137175,6 +145877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137226,6 +145931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137245,6 +145953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137323,6 +146034,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137342,6 +146056,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137393,6 +146110,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137412,6 +146132,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137490,6 +146213,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137509,6 +146235,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137560,6 +146289,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137579,6 +146311,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137657,6 +146392,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137676,6 +146414,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137727,6 +146468,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137746,6 +146490,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137824,6 +146571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137843,6 +146593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137894,6 +146647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -137913,6 +146669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -137991,6 +146750,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138010,6 +146772,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138061,6 +146826,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138080,6 +146848,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138158,6 +146929,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138177,6 +146951,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138228,6 +147005,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138247,6 +147027,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138325,6 +147108,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138344,6 +147130,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138395,6 +147184,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138414,6 +147206,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138492,6 +147287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138511,6 +147309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138562,6 +147363,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138581,6 +147385,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138659,6 +147466,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138678,6 +147488,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138729,6 +147542,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138748,6 +147564,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138826,6 +147645,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138845,6 +147667,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138896,6 +147721,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -138915,6 +147743,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -138993,6 +147824,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139012,6 +147846,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139063,6 +147900,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139082,6 +147922,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139160,6 +148003,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139179,6 +148025,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139230,6 +148079,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139249,6 +148101,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139327,6 +148182,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139346,6 +148204,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139397,6 +148258,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139416,6 +148280,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139494,6 +148361,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139513,6 +148383,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139564,6 +148437,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139583,6 +148459,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139661,6 +148540,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139680,6 +148562,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139731,6 +148616,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139750,6 +148638,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139828,6 +148719,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139847,6 +148741,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139898,6 +148795,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -139917,6 +148817,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -139995,6 +148898,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140014,6 +148920,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140065,6 +148974,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140084,6 +148996,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140162,6 +149077,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140181,6 +149099,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140232,6 +149153,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140251,6 +149175,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140329,6 +149256,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140348,6 +149278,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140399,6 +149332,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140418,6 +149354,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140496,6 +149435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140515,6 +149457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140566,6 +149511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140585,6 +149533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140663,6 +149614,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140682,6 +149636,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140733,6 +149690,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140752,6 +149712,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140830,6 +149793,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140849,6 +149815,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140900,6 +149869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -140919,6 +149891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -140997,6 +149972,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141016,6 +149994,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141067,6 +150048,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141086,6 +150070,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141164,6 +150151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141183,6 +150173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141234,6 +150227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141253,6 +150249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141331,6 +150330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141350,6 +150352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141401,6 +150406,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141420,6 +150428,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141498,6 +150509,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141517,6 +150531,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141568,6 +150585,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141587,6 +150607,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141665,6 +150688,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141684,6 +150710,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141735,6 +150764,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141754,6 +150786,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141832,6 +150867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141851,6 +150889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141902,6 +150943,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -141921,6 +150965,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -141999,6 +151046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142018,6 +151068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142069,6 +151122,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142088,6 +151144,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142166,6 +151225,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142185,6 +151247,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142236,6 +151301,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142255,6 +151323,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142333,6 +151404,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142352,6 +151426,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142403,6 +151480,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142422,6 +151502,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142500,6 +151583,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142519,6 +151605,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142570,6 +151659,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142589,6 +151681,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142667,6 +151762,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142686,6 +151784,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142737,6 +151838,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142756,6 +151860,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142834,6 +151941,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142853,6 +151963,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -142904,6 +152017,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -142923,6 +152039,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143001,6 +152120,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143020,6 +152142,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143071,6 +152196,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143090,6 +152218,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143168,6 +152299,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143187,6 +152321,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143238,6 +152375,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143257,6 +152397,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143335,6 +152478,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143354,6 +152500,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143405,6 +152554,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143424,6 +152576,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143502,6 +152657,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143521,6 +152679,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143572,6 +152733,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143591,6 +152755,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143669,6 +152836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143688,6 +152858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143739,6 +152912,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143758,6 +152934,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143836,6 +153015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143855,6 +153037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -143906,6 +153091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -143925,6 +153113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144003,6 +153194,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144022,6 +153216,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144073,6 +153270,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144092,6 +153292,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144170,6 +153373,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144189,6 +153395,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144240,6 +153449,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144259,6 +153471,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144337,6 +153552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144356,6 +153574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144407,6 +153628,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144426,6 +153650,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144504,6 +153731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144523,6 +153753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144574,6 +153807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144593,6 +153829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144671,6 +153910,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144690,6 +153932,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144741,6 +153986,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144760,6 +154008,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144838,6 +154089,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144857,6 +154111,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -144908,6 +154165,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -144927,6 +154187,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145005,6 +154268,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145024,6 +154290,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145075,6 +154344,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145094,6 +154366,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145172,6 +154447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145191,6 +154469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145242,6 +154523,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145261,6 +154545,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145339,6 +154626,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145358,6 +154648,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145409,6 +154702,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145428,6 +154724,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145506,6 +154805,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145525,6 +154827,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145576,6 +154881,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145595,6 +154903,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145673,6 +154984,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145692,6 +155006,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145743,6 +155060,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145762,6 +155082,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145840,6 +155163,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145859,6 +155185,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -145910,6 +155239,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -145929,6 +155261,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146007,6 +155342,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146026,6 +155364,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146077,6 +155418,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146096,6 +155440,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146174,6 +155521,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146193,6 +155543,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146244,6 +155597,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146263,6 +155619,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146341,6 +155700,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146360,6 +155722,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146411,6 +155776,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146430,6 +155798,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146508,6 +155879,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146527,6 +155901,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146578,6 +155955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146597,6 +155977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146675,6 +156058,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146694,6 +156080,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146745,6 +156134,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146764,6 +156156,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146842,6 +156237,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146861,6 +156259,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -146912,6 +156313,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -146931,6 +156335,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147009,6 +156416,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147028,6 +156438,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147079,6 +156492,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147098,6 +156514,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147176,6 +156595,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147195,6 +156617,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147246,6 +156671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147265,6 +156693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147343,6 +156774,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147362,6 +156796,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147413,6 +156850,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147432,6 +156872,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147510,6 +156953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147529,6 +156975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147580,6 +157029,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147599,6 +157051,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147677,6 +157132,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147696,6 +157154,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147747,6 +157208,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147766,6 +157230,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147844,6 +157311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147863,6 +157333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -147914,6 +157387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -147933,6 +157409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148011,6 +157490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148030,6 +157512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148081,6 +157566,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148100,6 +157588,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148178,6 +157669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148197,6 +157691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148248,6 +157745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148267,6 +157767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148345,6 +157848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148364,6 +157870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148415,6 +157924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148434,6 +157946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148512,6 +158027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148531,6 +158049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148582,6 +158103,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148601,6 +158125,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148679,6 +158206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148698,6 +158228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148749,6 +158282,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148768,6 +158304,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148846,6 +158385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148865,6 +158407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -148916,6 +158461,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -148935,6 +158483,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149013,6 +158564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149032,6 +158586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149083,6 +158640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149102,6 +158662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149180,6 +158743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149199,6 +158765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149250,6 +158819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149269,6 +158841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149347,6 +158922,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149366,6 +158944,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149417,6 +158998,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149436,6 +159020,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149514,6 +159101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149533,6 +159123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149584,6 +159177,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149603,6 +159199,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149681,6 +159280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149700,6 +159302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149751,6 +159356,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149770,6 +159378,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149848,6 +159459,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149867,6 +159481,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -149918,6 +159535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -149937,6 +159557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150015,6 +159638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150034,6 +159660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150085,6 +159714,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150104,6 +159736,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150182,6 +159817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150201,6 +159839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150252,6 +159893,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150271,6 +159915,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150349,6 +159996,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150368,6 +160018,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150419,6 +160072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150438,6 +160094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150516,6 +160175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150535,6 +160197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150586,6 +160251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150605,6 +160273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150683,6 +160354,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150702,6 +160376,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150753,6 +160430,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150772,6 +160452,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150850,6 +160533,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150869,6 +160555,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -150920,6 +160609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -150939,6 +160631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151017,6 +160712,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151036,6 +160734,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151087,6 +160788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151106,6 +160810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151184,6 +160891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151203,6 +160913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151254,6 +160967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151273,6 +160989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151351,6 +161070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151370,6 +161092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151421,6 +161146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151440,6 +161168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151518,6 +161249,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151537,6 +161271,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151588,6 +161325,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151607,6 +161347,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151685,6 +161428,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151704,6 +161450,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151755,6 +161504,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151774,6 +161526,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151852,6 +161607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151871,6 +161629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -151922,6 +161683,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -151941,6 +161705,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152019,6 +161786,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152038,6 +161808,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152089,6 +161862,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152108,6 +161884,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152186,6 +161965,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152205,6 +161987,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152256,6 +162041,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152275,6 +162063,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152353,6 +162144,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152372,6 +162166,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152423,6 +162220,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152442,6 +162242,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152520,6 +162323,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152539,6 +162345,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152590,6 +162399,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152609,6 +162421,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152687,6 +162502,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152706,6 +162524,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152757,6 +162578,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152776,6 +162600,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152854,6 +162681,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152873,6 +162703,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -152924,6 +162757,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -152943,6 +162779,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153021,6 +162860,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153040,6 +162882,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153091,6 +162936,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153110,6 +162958,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153188,6 +163039,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153207,6 +163061,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153258,6 +163115,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153277,6 +163137,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153355,6 +163218,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153374,6 +163240,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153425,6 +163294,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153444,6 +163316,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153522,6 +163397,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153541,6 +163419,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153592,6 +163473,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153611,6 +163495,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153689,6 +163576,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153708,6 +163598,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153759,6 +163652,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153778,6 +163674,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153856,6 +163755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153875,6 +163777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -153926,6 +163831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -153945,6 +163853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154023,6 +163934,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154042,6 +163956,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154093,6 +164010,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154112,6 +164032,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154190,6 +164113,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154209,6 +164135,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154260,6 +164189,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154279,6 +164211,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154357,6 +164292,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154376,6 +164314,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154427,6 +164368,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154446,6 +164390,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154524,6 +164471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154543,6 +164493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154594,6 +164547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154613,6 +164569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154691,6 +164650,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154710,6 +164672,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154761,6 +164726,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154780,6 +164748,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154858,6 +164829,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154877,6 +164851,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -154928,6 +164905,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -154947,6 +164927,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155025,6 +165008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155044,6 +165030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155095,6 +165084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155114,6 +165106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155192,6 +165187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155211,6 +165209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155262,6 +165263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155281,6 +165285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155359,6 +165366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155378,6 +165388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155429,6 +165442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155448,6 +165464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155526,6 +165545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155545,6 +165567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155596,6 +165621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155615,6 +165643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155693,6 +165724,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155712,6 +165746,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155763,6 +165800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155782,6 +165822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155860,6 +165903,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155879,6 +165925,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -155930,6 +165979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -155949,6 +166001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156027,6 +166082,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156046,6 +166104,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156097,6 +166158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156116,6 +166180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156194,6 +166261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156213,6 +166283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156264,6 +166337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156283,6 +166359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156361,6 +166440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156380,6 +166462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156431,6 +166516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156450,6 +166538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156528,6 +166619,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156547,6 +166641,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156598,6 +166695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156617,6 +166717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156695,6 +166798,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156714,6 +166820,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156765,6 +166874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156784,6 +166896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156862,6 +166977,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156881,6 +166999,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -156932,6 +167053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -156951,6 +167075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157029,6 +167156,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157048,6 +167178,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157099,6 +167232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157118,6 +167254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157196,6 +167335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157215,6 +167357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157266,6 +167411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157285,6 +167433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157363,6 +167514,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157382,6 +167536,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157433,6 +167590,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157452,6 +167612,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157530,6 +167693,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157549,6 +167715,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157600,6 +167769,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157619,6 +167791,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157697,6 +167872,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157716,6 +167894,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157767,6 +167948,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157786,6 +167970,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157864,6 +168051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157883,6 +168073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -157934,6 +168127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -157953,6 +168149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158031,6 +168230,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158050,6 +168252,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158101,6 +168306,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158120,6 +168328,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158198,6 +168409,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158217,6 +168431,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158268,6 +168485,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158287,6 +168507,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158365,6 +168588,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158384,6 +168610,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158435,6 +168664,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158454,6 +168686,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158532,6 +168767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158551,6 +168789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158602,6 +168843,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158621,6 +168865,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158699,6 +168946,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158718,6 +168968,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158769,6 +169022,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158788,6 +169044,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158866,6 +169125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158885,6 +169147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -158936,6 +169201,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -158955,6 +169223,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159033,6 +169304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159052,6 +169326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159103,6 +169380,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159122,6 +169402,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159200,6 +169483,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159219,6 +169505,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159270,6 +169559,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159289,6 +169581,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159367,6 +169662,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159386,6 +169684,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159437,6 +169738,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159456,6 +169760,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159534,6 +169841,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159553,6 +169863,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159604,6 +169917,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159623,6 +169939,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159701,6 +170020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159720,6 +170042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159771,6 +170096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159790,6 +170118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159868,6 +170199,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159887,6 +170221,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -159938,6 +170275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -159957,6 +170297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160035,6 +170378,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160054,6 +170400,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160105,6 +170454,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160124,6 +170476,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160202,6 +170557,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160221,6 +170579,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160272,6 +170633,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160291,6 +170655,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160369,6 +170736,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160388,6 +170758,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160439,6 +170812,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160458,6 +170834,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160536,6 +170915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160555,6 +170937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160606,6 +170991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160625,6 +171013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160703,6 +171094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160722,6 +171116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160773,6 +171170,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160792,6 +171192,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160870,6 +171273,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160889,6 +171295,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -160940,6 +171349,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -160959,6 +171371,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161037,6 +171452,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161056,6 +171474,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161107,6 +171528,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161126,6 +171550,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161204,6 +171631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161223,6 +171653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161274,6 +171707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161293,6 +171729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161371,6 +171810,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161390,6 +171832,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161441,6 +171886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161460,6 +171908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161538,6 +171989,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161557,6 +172011,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161608,6 +172065,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161627,6 +172087,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161705,6 +172168,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161724,6 +172190,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161775,6 +172244,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161794,6 +172266,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161872,6 +172347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161891,6 +172369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -161942,6 +172423,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -161961,6 +172445,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162039,6 +172526,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162058,6 +172548,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162109,6 +172602,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162128,6 +172624,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162206,6 +172705,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162225,6 +172727,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162276,6 +172781,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162295,6 +172803,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162373,6 +172884,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162392,6 +172906,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162443,6 +172960,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162462,6 +172982,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162540,6 +173063,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162559,6 +173085,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162610,6 +173139,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162629,6 +173161,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162707,6 +173242,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162726,6 +173264,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162777,6 +173318,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162796,6 +173340,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162874,6 +173421,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162893,6 +173443,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -162944,6 +173497,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -162963,6 +173519,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163041,6 +173600,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163060,6 +173622,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163111,6 +173676,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163130,6 +173698,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163208,6 +173779,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163227,6 +173801,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163278,6 +173855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163297,6 +173877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163375,6 +173958,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163394,6 +173980,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163445,6 +174034,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163464,6 +174056,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163542,6 +174137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163561,6 +174159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163612,6 +174213,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163631,6 +174235,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163709,6 +174316,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163728,6 +174338,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163779,6 +174392,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163798,6 +174414,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163876,6 +174495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163895,6 +174517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -163946,6 +174571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -163965,6 +174593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164043,6 +174674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164062,6 +174696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164113,6 +174750,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164132,6 +174772,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164210,6 +174853,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164229,6 +174875,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164280,6 +174929,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164299,6 +174951,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164377,6 +175032,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164396,6 +175054,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164447,6 +175108,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164466,6 +175130,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164544,6 +175211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164563,6 +175233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164614,6 +175287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164633,6 +175309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164711,6 +175390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164730,6 +175412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164781,6 +175466,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164800,6 +175488,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164878,6 +175569,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164897,6 +175591,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -164948,6 +175645,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -164967,6 +175667,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165045,6 +175748,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165064,6 +175770,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165115,6 +175824,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165134,6 +175846,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165212,6 +175927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165231,6 +175949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165282,6 +176003,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165301,6 +176025,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165379,6 +176106,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165398,6 +176128,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165449,6 +176182,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165468,6 +176204,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165546,6 +176285,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165565,6 +176307,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165616,6 +176361,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165635,6 +176383,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165713,6 +176464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165732,6 +176486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165783,6 +176540,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165802,6 +176562,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165880,6 +176643,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165899,6 +176665,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -165950,6 +176719,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -165969,6 +176741,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166047,6 +176822,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166066,6 +176844,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166117,6 +176898,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166136,6 +176920,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166214,6 +177001,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166233,6 +177023,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166284,6 +177077,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166303,6 +177099,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166381,6 +177180,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166400,6 +177202,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166451,6 +177256,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166470,6 +177278,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166548,6 +177359,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166567,6 +177381,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166618,6 +177435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166637,6 +177457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166715,6 +177538,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166734,6 +177560,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166785,6 +177614,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166804,6 +177636,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166882,6 +177717,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166901,6 +177739,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -166952,6 +177793,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -166971,6 +177815,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167049,6 +177896,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167068,6 +177918,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167119,6 +177972,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167138,6 +177994,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167216,6 +178075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167235,6 +178097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167286,6 +178151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167305,6 +178173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167383,6 +178254,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167402,6 +178276,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167453,6 +178330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167472,6 +178352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167550,6 +178433,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167569,6 +178455,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167620,6 +178509,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167639,6 +178531,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167717,6 +178612,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167736,6 +178634,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167787,6 +178688,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167806,6 +178710,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167884,6 +178791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167903,6 +178813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -167954,6 +178867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -167973,6 +178889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168051,6 +178970,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168070,6 +178992,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168121,6 +179046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168140,6 +179068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168218,6 +179149,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168237,6 +179171,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168288,6 +179225,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168307,6 +179247,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168385,6 +179328,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168404,6 +179350,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168455,6 +179404,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168474,6 +179426,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168552,6 +179507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168571,6 +179529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168622,6 +179583,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168641,6 +179605,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168719,6 +179686,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168738,6 +179708,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168789,6 +179762,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168808,6 +179784,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168886,6 +179865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168905,6 +179887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -168956,6 +179941,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -168975,6 +179963,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169053,6 +180044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169072,6 +180066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169123,6 +180120,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169142,6 +180142,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169220,6 +180223,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169239,6 +180245,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169290,6 +180299,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169309,6 +180321,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169387,6 +180402,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169406,6 +180424,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169457,6 +180478,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169476,6 +180500,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169554,6 +180581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169573,6 +180603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169624,6 +180657,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169643,6 +180679,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169721,6 +180760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169740,6 +180782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169791,6 +180836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169810,6 +180858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169888,6 +180939,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169907,6 +180961,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -169958,6 +181015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -169977,6 +181037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170055,6 +181118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170074,6 +181140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170125,6 +181194,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170144,6 +181216,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170222,6 +181297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170241,6 +181319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170292,6 +181373,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170311,6 +181395,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170389,6 +181476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170408,6 +181498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170459,6 +181552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170478,6 +181574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170556,6 +181655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170575,6 +181677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170626,6 +181731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170645,6 +181753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170723,6 +181834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170742,6 +181856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170793,6 +181910,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170812,6 +181932,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170890,6 +182013,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170909,6 +182035,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -170960,6 +182089,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -170979,6 +182111,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171057,6 +182192,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171076,6 +182214,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171127,6 +182268,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171146,6 +182290,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171224,6 +182371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171243,6 +182393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171294,6 +182447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171313,6 +182469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171391,6 +182550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171410,6 +182572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171461,6 +182626,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171480,6 +182648,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171558,6 +182729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171577,6 +182751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171628,6 +182805,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171647,6 +182827,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171725,6 +182908,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171744,6 +182930,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171795,6 +182984,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171814,6 +183006,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171892,6 +183087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171911,6 +183109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -171962,6 +183163,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -171981,6 +183185,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172059,6 +183266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172078,6 +183288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172129,6 +183342,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172148,6 +183364,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172226,6 +183445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172245,6 +183467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172296,6 +183521,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172315,6 +183543,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172393,6 +183624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172412,6 +183646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172463,6 +183700,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172482,6 +183722,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172560,6 +183803,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172579,6 +183825,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172630,6 +183879,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172649,6 +183901,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172727,6 +183982,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172746,6 +184004,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172797,6 +184058,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172816,6 +184080,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172894,6 +184161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172913,6 +184183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -172964,6 +184237,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -172983,6 +184259,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173061,6 +184340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173080,6 +184362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173131,6 +184416,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173150,6 +184438,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173228,6 +184519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173247,6 +184541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173298,6 +184595,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173317,6 +184617,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173395,6 +184698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173414,6 +184720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173465,6 +184774,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173484,6 +184796,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173562,6 +184877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173581,6 +184899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173632,6 +184953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173651,6 +184975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173729,6 +185056,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173748,6 +185078,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173799,6 +185132,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173818,6 +185154,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173896,6 +185235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173915,6 +185257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -173966,6 +185311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -173985,6 +185333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174063,6 +185414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174082,6 +185436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174133,6 +185490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174152,6 +185512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174230,6 +185593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174249,6 +185615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174300,6 +185669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174319,6 +185691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174397,6 +185772,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174416,6 +185794,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174467,6 +185848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174486,6 +185870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174564,6 +185951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174583,6 +185973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174634,6 +186027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174653,6 +186049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174731,6 +186130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174750,6 +186152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174801,6 +186206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174820,6 +186228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174898,6 +186309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174917,6 +186331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -174968,6 +186385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -174987,6 +186407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175065,6 +186488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175084,6 +186510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175135,6 +186564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175154,6 +186586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175232,6 +186667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175251,6 +186689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175302,6 +186743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175321,6 +186765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175399,6 +186846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175418,6 +186868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175469,6 +186922,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175488,6 +186944,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175566,6 +187025,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175585,6 +187047,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175636,6 +187101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175655,6 +187123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175733,6 +187204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175752,6 +187226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175803,6 +187280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175822,6 +187302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175900,6 +187383,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175919,6 +187405,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -175970,6 +187459,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -175989,6 +187481,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176067,6 +187562,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176086,6 +187584,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176137,6 +187638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176156,6 +187660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176234,6 +187741,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176253,6 +187763,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176304,6 +187817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176323,6 +187839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176401,6 +187920,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176420,6 +187942,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176471,6 +187996,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176490,6 +188018,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176568,6 +188099,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176587,6 +188121,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176638,6 +188175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176657,6 +188197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176735,6 +188278,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176754,6 +188300,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176805,6 +188354,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176824,6 +188376,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176902,6 +188457,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176921,6 +188479,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -176972,6 +188533,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -176991,6 +188555,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177069,6 +188636,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177088,6 +188658,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177139,6 +188712,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177158,6 +188734,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177236,6 +188815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177255,6 +188837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177306,6 +188891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177325,6 +188913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177403,6 +188994,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177422,6 +189016,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177473,6 +189070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177492,6 +189092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177570,6 +189173,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177589,6 +189195,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177640,6 +189249,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177659,6 +189271,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177737,6 +189352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177756,6 +189374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177807,6 +189428,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177826,6 +189450,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177904,6 +189531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177923,6 +189553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -177974,6 +189607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -177993,6 +189629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178071,6 +189710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178090,6 +189732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178141,6 +189786,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178160,6 +189808,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178238,6 +189889,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178257,6 +189911,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178308,6 +189965,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178327,6 +189987,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178405,6 +190068,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178424,6 +190090,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178475,6 +190144,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178494,6 +190166,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178572,6 +190247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178591,6 +190269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178642,6 +190323,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178661,6 +190345,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178739,6 +190426,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178758,6 +190448,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178809,6 +190502,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178828,6 +190524,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178906,6 +190605,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178925,6 +190627,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -178976,6 +190681,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -178995,6 +190703,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179073,6 +190784,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179092,6 +190806,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179143,6 +190860,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179162,6 +190882,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179240,6 +190963,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179259,6 +190985,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179310,6 +191039,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179329,6 +191061,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179407,6 +191142,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179426,6 +191164,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179477,6 +191218,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179496,6 +191240,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179574,6 +191321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179593,6 +191343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179644,6 +191397,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179663,6 +191419,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179741,6 +191500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179760,6 +191522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179811,6 +191576,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179830,6 +191598,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179908,6 +191679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179927,6 +191701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -179978,6 +191755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -179997,6 +191777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180075,6 +191858,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180094,6 +191880,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180145,6 +191934,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180164,6 +191956,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180242,6 +192037,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180261,6 +192059,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180312,6 +192113,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180331,6 +192135,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180409,6 +192216,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180428,6 +192238,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180479,6 +192292,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180498,6 +192314,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180576,6 +192395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180595,6 +192417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180646,6 +192471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180665,6 +192493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180743,6 +192574,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180762,6 +192596,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180813,6 +192650,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180832,6 +192672,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180910,6 +192753,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180929,6 +192775,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -180980,6 +192829,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -180999,6 +192851,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181077,6 +192932,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -181096,6 +192954,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181147,6 +193008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -181166,6 +193030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181244,6 +193111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -181263,6 +193133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181314,6 +193187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -181333,6 +193209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181411,6 +193290,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -181430,6 +193312,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181481,6 +193366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -181500,6 +193388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181578,6 +193469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -181597,6 +193491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181648,6 +193545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -181667,6 +193567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -181819,6 +193722,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 116202986} m_CullTransparentMesh: 0 +--- !u!1 &116667041 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 116667042} + - component: {fileID: 116667044} + - component: {fileID: 116667043} + m_Layer: 0 + m_Name: axis_x10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &116667042 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 116667041} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1498267858} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 447, y: -33} + m_SizeDelta: {x: 0, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &116667043 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 116667041} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &116667044 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 116667041} + m_CullTransparentMesh: 0 --- !u!1 &117400065 GameObject: m_ObjectHideFlags: 0 @@ -183357,6 +195338,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Stack @@ -183390,6 +195377,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -183428,6 +195416,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -184163,6 +196152,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -184356,6 +196346,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -184375,6 +196368,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -184425,6 +196421,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -184444,6 +196443,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -184533,6 +196535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -184552,6 +196557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -184603,6 +196611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -184622,6 +196633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -184700,6 +196714,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -184719,6 +196736,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -184770,6 +196790,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -184789,6 +196812,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -184867,6 +196893,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -184886,6 +196915,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -184937,6 +196969,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -184956,6 +196991,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185034,6 +197072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185053,6 +197094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185104,6 +197148,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185123,6 +197170,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185201,6 +197251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185220,6 +197273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185271,6 +197327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185290,6 +197349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185368,6 +197430,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185387,6 +197452,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185438,6 +197506,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185457,6 +197528,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185535,6 +197609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185554,6 +197631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185605,6 +197685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185624,6 +197707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185721,6 +197807,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -185914,6 +198001,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -185933,6 +198023,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -185983,6 +198076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186002,6 +198098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186091,6 +198190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186110,6 +198212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186161,6 +198266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186180,6 +198288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186258,6 +198369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186277,6 +198391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186328,6 +198445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186347,6 +198467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186425,6 +198548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186444,6 +198570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186495,6 +198624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186514,6 +198646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186592,6 +198727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186611,6 +198749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186662,6 +198803,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186681,6 +198825,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186759,6 +198906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186778,6 +198928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186829,6 +198982,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186848,6 +199004,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186926,6 +199085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -186945,6 +199107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -186996,6 +199161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187015,6 +199183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187093,6 +199264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187112,6 +199286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187163,6 +199340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187182,6 +199362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187279,6 +199462,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -187472,6 +199656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187491,6 +199678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187541,6 +199731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187560,6 +199753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187649,6 +199845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187668,6 +199867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187719,6 +199921,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187738,6 +199943,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187816,6 +200024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187835,6 +200046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187886,6 +200100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -187905,6 +200122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -187983,6 +200203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188002,6 +200225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188053,6 +200279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188072,6 +200301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188150,6 +200382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188169,6 +200404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188220,6 +200458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188239,6 +200480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188317,6 +200561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188336,6 +200583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188387,6 +200637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188406,6 +200659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188484,6 +200740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188503,6 +200762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188554,6 +200816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188573,6 +200838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188651,6 +200919,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188670,6 +200941,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188721,6 +200995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -188740,6 +201017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -188837,6 +201117,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -189030,6 +201311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189049,6 +201333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189099,6 +201386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189118,6 +201408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189207,6 +201500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189226,6 +201522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189277,6 +201576,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189296,6 +201598,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189374,6 +201679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189393,6 +201701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189444,6 +201755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189463,6 +201777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189541,6 +201858,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189560,6 +201880,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189611,6 +201934,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189630,6 +201956,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189708,6 +202037,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189727,6 +202059,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189778,6 +202113,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189797,6 +202135,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189875,6 +202216,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189894,6 +202238,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -189945,6 +202292,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -189964,6 +202314,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190042,6 +202395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190061,6 +202417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190112,6 +202471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190131,6 +202493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190209,6 +202574,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190228,6 +202596,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190279,6 +202650,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190298,6 +202672,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190395,6 +202772,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -190588,6 +202966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190607,6 +202988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190657,6 +203041,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190676,6 +203063,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190765,6 +203155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190784,6 +203177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190835,6 +203231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190854,6 +203253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -190932,6 +203334,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -190951,6 +203356,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191002,6 +203410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191021,6 +203432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191099,6 +203513,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191118,6 +203535,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191169,6 +203589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191188,6 +203611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191266,6 +203692,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191285,6 +203714,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191336,6 +203768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191355,6 +203790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191433,6 +203871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191452,6 +203893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191503,6 +203947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191522,6 +203969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191600,6 +204050,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191619,6 +204072,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191670,6 +204126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191689,6 +204148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191767,6 +204229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191786,6 +204251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -191837,6 +204305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -191856,6 +204327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -192858,6 +205332,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &128963911 GameObject: m_ObjectHideFlags: 0 @@ -192936,6 +205423,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 128963911} m_CullTransparentMesh: 0 +--- !u!1 &129269980 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 129269981} + - component: {fileID: 129269983} + - component: {fileID: 129269982} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &129269981 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 129269980} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2126879549} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &129269982 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 129269980} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &129269983 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 129269980} + m_CullTransparentMesh: 0 --- !u!1 &129282346 GameObject: m_ObjectHideFlags: 1 @@ -193768,6 +206333,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &132308998 GameObject: m_ObjectHideFlags: 0 @@ -194368,6 +206946,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 135823759} m_CullTransparentMesh: 0 +--- !u!1 &136043330 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 136043331} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &136043331 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 136043330} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 85899473} + - {fileID: 737644431} + - {fileID: 6832474} + - {fileID: 795435015} + - {fileID: 881688454} + - {fileID: 1208139313} + m_Father: {fileID: 1033575168} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &136801662 GameObject: m_ObjectHideFlags: 0 @@ -194620,6 +207239,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Vertical & Stack @@ -194653,6 +207278,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -194691,6 +207317,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -195425,6 +208052,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -195618,6 +208246,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -195637,6 +208268,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -195687,6 +208321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -195706,6 +208343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -195795,6 +208435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -195814,6 +208457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -195865,6 +208511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -195884,6 +208533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -195962,6 +208614,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -195981,6 +208636,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196032,6 +208690,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196051,6 +208712,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196129,6 +208793,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196148,6 +208815,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196199,6 +208869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196218,6 +208891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196296,6 +208972,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196315,6 +208994,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196366,6 +209048,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196385,6 +209070,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196463,6 +209151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196482,6 +209173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196533,6 +209227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196552,6 +209249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196630,6 +209330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196649,6 +209352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196700,6 +209406,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -196719,6 +209428,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -196816,6 +209528,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -197009,6 +209722,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197028,6 +209744,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197078,6 +209797,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197097,6 +209819,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197186,6 +209911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197205,6 +209933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197256,6 +209987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197275,6 +210009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197353,6 +210090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197372,6 +210112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197423,6 +210166,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197442,6 +210188,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197520,6 +210269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197539,6 +210291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197590,6 +210345,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197609,6 +210367,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197687,6 +210448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197706,6 +210470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197757,6 +210524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197776,6 +210546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197854,6 +210627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197873,6 +210649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -197924,6 +210703,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -197943,6 +210725,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -198021,6 +210806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -198040,6 +210828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -198091,6 +210882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -198110,6 +210904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -198843,6 +211640,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 141051800} m_CullTransparentMesh: 0 +--- !u!1 &141267816 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 141267817} + - component: {fileID: 141267819} + - component: {fileID: 141267818} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &141267817 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 141267816} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 258527808} + m_Father: {fileID: 253333212} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &141267818 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 141267816} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &141267819 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 141267816} + m_CullTransparentMesh: 0 --- !u!1 &141297554 GameObject: m_ObjectHideFlags: 0 @@ -199808,6 +212680,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Positive and negative value @@ -199841,6 +212719,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -199879,6 +212758,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -200614,6 +213494,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -200807,6 +213688,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -200826,6 +213710,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -200876,6 +213763,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -200895,6 +213785,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -200984,6 +213877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201003,6 +213899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201054,6 +213953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201073,6 +213975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201151,6 +214056,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201170,6 +214078,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201221,6 +214132,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201240,6 +214154,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201318,6 +214235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201337,6 +214257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201388,6 +214311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201407,6 +214333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201485,6 +214414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201504,6 +214436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201555,6 +214490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201574,6 +214512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201652,6 +214593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201671,6 +214615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201722,6 +214669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201741,6 +214691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201819,6 +214772,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201838,6 +214794,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201889,6 +214848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -201908,6 +214870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -201986,6 +214951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -202005,6 +214973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -202056,6 +215027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -202075,6 +215049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -202811,6 +215788,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 150028584} m_CullTransparentMesh: 0 +--- !u!1 &150470112 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 150470113} + m_Layer: 0 + m_Name: title0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &150470113 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 150470112} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1710413307} + - {fileID: 1932052125} + m_Father: {fileID: 1033575168} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -5} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0.5, y: 1} --- !u!1 &150970129 GameObject: m_ObjectHideFlags: 0 @@ -206336,6 +219350,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 170299145} m_CullTransparentMesh: 0 +--- !u!1 &170491456 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 170491457} + - component: {fileID: 170491459} + - component: {fileID: 170491458} + m_Layer: 0 + m_Name: axis_x13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &170491457 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 170491456} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 264878278} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 677.2, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &170491458 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 170491456} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x4 +--- !u!222 &170491459 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 170491456} + m_CullTransparentMesh: 0 --- !u!1 &170948002 GameObject: m_ObjectHideFlags: 0 @@ -207077,6 +220169,78 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 176277060} m_CullTransparentMesh: 0 +--- !u!1 &178133717 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 178133718} + m_Layer: 0 + m_Name: label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &178133718 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 178133717} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!1 &178696221 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 178696222} + m_Layer: 0 + m_Name: title0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &178696222 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 178696221} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 613022165} + - {fileID: 406357852} + m_Father: {fileID: 1070880691} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -5} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0.5, y: 1} --- !u!1 &178807418 GameObject: m_ObjectHideFlags: 0 @@ -210157,6 +223321,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 193716272} m_CullTransparentMesh: 0 +--- !u!1 &193992666 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 193992667} + m_Layer: 0 + m_Name: axis_y + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &193992667 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 193992666} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 428846362} + - {fileID: 1468151241} + - {fileID: 1847728687} + - {fileID: 250979851} + - {fileID: 1387050644} + - {fileID: 1857001747} + m_Father: {fileID: 651764999} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &194156672 GameObject: m_ObjectHideFlags: 1 @@ -212021,6 +225226,41 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 206151811} m_CullTransparentMesh: 0 +--- !u!1 &206243966 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 206243967} + m_Layer: 0 + m_Name: legend0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &206243967 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 206243966} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &206406942 GameObject: m_ObjectHideFlags: 0 @@ -215552,6 +228792,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 223534464} m_CullTransparentMesh: 0 +--- !u!1 &224146740 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224146741} + - component: {fileID: 224146743} + - component: {fileID: 224146742} + m_Layer: 0 + m_Name: axis_x14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224146741 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 224146740} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1498267858} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 834, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &224146742 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 224146740} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x5 +--- !u!222 &224146743 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 224146740} + m_CullTransparentMesh: 0 --- !u!1 &225046351 GameObject: m_ObjectHideFlags: 0 @@ -218624,6 +231942,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &237373726 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 237373727} + - component: {fileID: 237373729} + - component: {fileID: 237373728} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &237373727 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 237373726} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1476740197} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &237373728 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 237373726} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &237373729 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 237373726} + m_CullTransparentMesh: 0 --- !u!1 &238593218 GameObject: m_ObjectHideFlags: 0 @@ -219800,6 +233196,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 244378735} m_CullTransparentMesh: 0 +--- !u!1 &244744565 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 244744566} + - component: {fileID: 244744568} + - component: {fileID: 244744567} + m_Layer: 0 + m_Name: axis_y3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &244744566 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 244744565} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1794954420} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 241.20001} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &244744567 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 244744565} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 30 +--- !u!222 &244744568 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 244744565} + m_CullTransparentMesh: 0 --- !u!1 &245091391 GameObject: m_ObjectHideFlags: 1 @@ -220020,6 +233494,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -220053,6 +233533,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -220091,6 +233572,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -220318,6 +233800,7 @@ MonoBehaviour: m_Max: 220 m_StartAngle: -140 m_EndAngle: 140 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -220514,6 +233997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -220533,6 +234019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -220583,6 +234072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -220602,6 +234094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -220691,6 +234186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -220710,6 +234208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -220761,6 +234262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -220780,6 +234284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -220877,6 +234384,7 @@ MonoBehaviour: m_Max: 7 m_StartAngle: -135 m_EndAngle: 45 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -221073,6 +234581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -221092,6 +234603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -221142,6 +234656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -221161,6 +234678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -221250,6 +234770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -221269,6 +234792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -221320,6 +234846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -221339,6 +234868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -221436,6 +234968,7 @@ MonoBehaviour: m_Max: 2 m_StartAngle: -45 m_EndAngle: 45 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -221635,6 +235168,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -221654,6 +235190,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -221704,6 +235243,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -221723,6 +235265,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -221812,6 +235357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -221831,6 +235379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -221882,6 +235433,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -221901,6 +235455,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -221998,6 +235555,7 @@ MonoBehaviour: m_Max: 2 m_StartAngle: 135 m_EndAngle: 225 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -222197,6 +235755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -222216,6 +235777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -222266,6 +235830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -222285,6 +235852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -222374,6 +235944,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -222393,6 +235966,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -222444,6 +236020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -222463,6 +236042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -223006,6 +236588,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 247861377} m_CullTransparentMesh: 0 +--- !u!1 &247876863 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 247876864} + - component: {fileID: 247876866} + - component: {fileID: 247876865} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &247876864 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247876863} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 649722205} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &247876865 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247876863} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &247876866 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 247876863} + m_CullTransparentMesh: 0 --- !u!1 &248000493 GameObject: m_ObjectHideFlags: 0 @@ -223420,6 +237080,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 249608760} m_CullTransparentMesh: 0 +--- !u!1 &250979850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 250979851} + - component: {fileID: 250979853} + - component: {fileID: 250979852} + m_Layer: 0 + m_Name: axis_y3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &250979851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 250979850} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 193992667} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 52, y: 257.2} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &250979852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 250979850} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 12000 +--- !u!222 &250979853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 250979850} + m_CullTransparentMesh: 0 --- !u!1 &251221569 GameObject: m_ObjectHideFlags: 0 @@ -223559,6 +237297,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 251434369} m_CullTransparentMesh: 0 +--- !u!1 &251541822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 251541823} + - component: {fileID: 251541825} + - component: {fileID: 251541824} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &251541823 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 251541822} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 104672481} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &251541824 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 251541822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &251541825 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 251541822} + m_CullTransparentMesh: 0 --- !u!1 &251754346 GameObject: m_ObjectHideFlags: 1 @@ -223843,6 +237659,46 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 252973762} m_CullTransparentMesh: 0 +--- !u!1 &253333211 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 253333212} + m_Layer: 0 + m_Name: tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &253333212 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 253333211} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 141267817} + - {fileID: 1304829139} + - {fileID: 1889278936} + - {fileID: 1510606401} + - {fileID: 1471973888} + m_Father: {fileID: 651764999} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &253591171 GameObject: m_ObjectHideFlags: 0 @@ -224582,6 +238438,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 258509370} m_CullTransparentMesh: 0 +--- !u!1 &258527807 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 258527808} + - component: {fileID: 258527810} + - component: {fileID: 258527809} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &258527808 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 258527807} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 141267817} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 3, y: -3} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &258527809 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 258527807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &258527810 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 258527807} + m_CullTransparentMesh: 0 --- !u!1 &259117039 GameObject: m_ObjectHideFlags: 0 @@ -224943,6 +238877,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -224976,6 +238916,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -225014,6 +238955,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -225241,6 +239183,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -225434,6 +239377,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -225453,6 +239399,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -225503,6 +239452,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -225522,6 +239474,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -225611,6 +239566,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -225630,6 +239588,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -225681,6 +239642,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -225700,6 +239664,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -225778,6 +239745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -225797,6 +239767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -225848,6 +239821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -225867,6 +239843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -225945,6 +239924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -225964,6 +239946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226015,6 +240000,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226034,6 +240022,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226112,6 +240103,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226131,6 +240125,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226182,6 +240179,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226201,6 +240201,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226279,6 +240282,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226298,6 +240304,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226349,6 +240358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226368,6 +240380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226446,6 +240461,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226465,6 +240483,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226516,6 +240537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226535,6 +240559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226632,6 +240659,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -226825,6 +240853,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226844,6 +240875,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -226894,6 +240928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -226913,6 +240950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227002,6 +241042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227021,6 +241064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227072,6 +241118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227091,6 +241140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227169,6 +241221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227188,6 +241243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227239,6 +241297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227258,6 +241319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227336,6 +241400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227355,6 +241422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227406,6 +241476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227425,6 +241498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227503,6 +241579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227522,6 +241601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227573,6 +241655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227592,6 +241677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227670,6 +241758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227689,6 +241780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227740,6 +241834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227759,6 +241856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227837,6 +241937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227856,6 +241959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -227907,6 +242013,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -227926,6 +242035,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -228875,6 +242987,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 264768129} m_CullTransparentMesh: 0 +--- !u!1 &264878277 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 264878278} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &264878278 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 264878277} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 462159531} + - {fileID: 608659638} + - {fileID: 781828723} + - {fileID: 170491457} + - {fileID: 1644719452} + - {fileID: 1154967753} + m_Father: {fileID: 1033575168} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &265311820 GameObject: m_ObjectHideFlags: 0 @@ -230044,6 +244197,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &269956482 GameObject: m_ObjectHideFlags: 1 @@ -230108,6 +244274,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 269956482} m_CullTransparentMesh: 0 +--- !u!1 &270174827 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 270174828} + - component: {fileID: 270174830} + - component: {fileID: 270174829} + m_Layer: 0 + m_Name: painter_7 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &270174828 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270174827} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &270174829 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270174827} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &270174830 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270174827} + m_CullTransparentMesh: 0 --- !u!1 &270293626 GameObject: m_ObjectHideFlags: 0 @@ -230558,6 +244788,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 276653432} m_CullTransparentMesh: 0 +--- !u!1 &276884177 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 276884178} + - component: {fileID: 276884180} + - component: {fileID: 276884179} + m_Layer: 0 + m_Name: painter_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &276884178 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 276884177} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &276884179 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 276884177} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &276884180 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 276884177} + m_CullTransparentMesh: 0 --- !u!1 &277090105 GameObject: m_ObjectHideFlags: 1 @@ -232028,6 +246322,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 284756358} m_CullTransparentMesh: 0 +--- !u!1 &285225105 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 285225106} + - component: {fileID: 285225108} + - component: {fileID: 285225107} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &285225106 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 285225105} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 456022028} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 24} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &285225107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 285225105} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 24 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: CandlestickChart +--- !u!222 &285225108 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 285225105} + m_CullTransparentMesh: 0 --- !u!1 &286136471 GameObject: m_ObjectHideFlags: 0 @@ -233514,6 +247886,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 294971460} m_CullTransparentMesh: 0 +--- !u!1 &295062494 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 295062495} + - component: {fileID: 295062497} + - component: {fileID: 295062496} + m_Layer: 0 + m_Name: painter_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &295062495 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 295062494} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &295062496 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 295062494} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &295062497 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 295062494} + m_CullTransparentMesh: 0 --- !u!1 &295103080 GameObject: m_ObjectHideFlags: 0 @@ -234037,6 +248473,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Gradient By VisualMap @@ -234070,6 +248512,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -234108,6 +248551,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -234845,6 +249289,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -235038,6 +249483,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235057,6 +249505,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235107,6 +249558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235126,6 +249580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235215,6 +249672,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235234,6 +249694,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235285,6 +249748,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235304,6 +249770,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235382,6 +249851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235401,6 +249873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235452,6 +249927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235471,6 +249949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235549,6 +250030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235568,6 +250052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235619,6 +250106,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235638,6 +250128,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235716,6 +250209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235735,6 +250231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235786,6 +250285,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235805,6 +250307,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235883,6 +250388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235902,6 +250410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -235953,6 +250464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -235972,6 +250486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -236544,6 +251061,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 300904196} m_CullTransparentMesh: 0 +--- !u!1 &301088168 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 301088169} + - component: {fileID: 301088171} + - component: {fileID: 301088170} + m_Layer: 0 + m_Name: axis_y1_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &301088169 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301088168} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1256757276} + m_Father: {fileID: 989549433} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &301088170 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301088168} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &301088171 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301088168} + m_CullTransparentMesh: 0 --- !u!1 &301106684 GameObject: m_ObjectHideFlags: 1 @@ -237423,6 +252015,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 308795485} m_CullTransparentMesh: 0 +--- !u!1 &309543558 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 309543559} + - component: {fileID: 309543561} + - component: {fileID: 309543560} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &309543559 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309543558} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 104672481} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &309543560 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309543558} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &309543561 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309543558} + m_CullTransparentMesh: 0 --- !u!1 &310240979 GameObject: m_ObjectHideFlags: 1 @@ -238340,6 +253010,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &315899443 GameObject: m_ObjectHideFlags: 1 @@ -243116,6 +257799,97 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 +--- !u!1 &339181270 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 339181271} + - component: {fileID: 339181273} + - component: {fileID: 339181272} + m_Layer: 0 + m_Name: axis_x3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &339181271 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 339181270} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 406619059} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 834, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &339181272 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 339181270} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 2020-10-27 +--- !u!222 &339181273 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 339181270} + m_CullTransparentMesh: 0 --- !u!1 &340121969 GameObject: m_ObjectHideFlags: 1 @@ -243919,6 +258693,46 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 344382354} m_CullTransparentMesh: 0 +--- !u!1 &344721545 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 344721546} + m_Layer: 0 + m_Name: tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &344721546 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 344721545} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1291069015} + - {fileID: 1579577512} + - {fileID: 810583009} + - {fileID: 649722205} + - {fileID: 1795514725} + m_Father: {fileID: 1033575168} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &344862355 GameObject: m_ObjectHideFlags: 0 @@ -243977,6 +258791,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &344862358 MonoBehaviour: m_ObjectHideFlags: 0 @@ -244624,6 +259550,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &346440112 GameObject: m_ObjectHideFlags: 0 @@ -246818,6 +261757,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &356854301 GameObject: m_ObjectHideFlags: 1 @@ -246859,6 +261811,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &356856249 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 356856250} + - component: {fileID: 356856252} + - component: {fileID: 356856251} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &356856250 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 356856249} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1471973888} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &356856251 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 356856249} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &356856252 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 356856249} + m_CullTransparentMesh: 0 --- !u!1 &357241509 GameObject: m_ObjectHideFlags: 0 @@ -247423,6 +262453,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Symbol & Gap @@ -247456,6 +262492,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -247494,6 +262531,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -248229,6 +263267,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -248422,6 +263461,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -248441,6 +263483,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -248491,6 +263536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -248510,6 +263558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -248599,6 +263650,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -248618,6 +263672,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -248669,6 +263726,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -248688,6 +263748,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -248766,6 +263829,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -248785,6 +263851,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -248836,6 +263905,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -248855,6 +263927,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -248933,6 +264008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -248952,6 +264030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249003,6 +264084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249022,6 +264106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249100,6 +264187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249119,6 +264209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249170,6 +264263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249189,6 +264285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249267,6 +264366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249286,6 +264388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249337,6 +264442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249356,6 +264464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249434,6 +264545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249453,6 +264567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249504,6 +264621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249523,6 +264643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249601,6 +264724,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249620,6 +264746,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249671,6 +264800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249690,6 +264822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -249787,6 +264922,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -249980,6 +265116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -249999,6 +265138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250049,6 +265191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250068,6 +265213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250157,6 +265305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250176,6 +265327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250227,6 +265381,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250246,6 +265403,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250324,6 +265484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250343,6 +265506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250394,6 +265560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250413,6 +265582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250491,6 +265663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250510,6 +265685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250561,6 +265739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250580,6 +265761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250658,6 +265842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250677,6 +265864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250728,6 +265918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250747,6 +265940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250825,6 +266021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250844,6 +266043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250895,6 +266097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -250914,6 +266119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -250992,6 +266200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251011,6 +266222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251062,6 +266276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251081,6 +266298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251159,6 +266379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251178,6 +266401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251229,6 +266455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251248,6 +266477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251345,6 +266577,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -251538,6 +266771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251557,6 +266793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251607,6 +266846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251626,6 +266868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251715,6 +266960,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251734,6 +266982,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251785,6 +267036,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251804,6 +267058,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251882,6 +267139,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251901,6 +267161,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -251952,6 +267215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -251971,6 +267237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252049,6 +267318,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252068,6 +267340,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252119,6 +267394,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252138,6 +267416,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252216,6 +267497,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252235,6 +267519,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252286,6 +267573,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252305,6 +267595,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252383,6 +267676,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252402,6 +267698,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252453,6 +267752,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252472,6 +267774,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252550,6 +267855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252569,6 +267877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252620,6 +267931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252639,6 +267953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252717,6 +268034,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252736,6 +268056,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -252787,6 +268110,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -252806,6 +268132,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -253692,6 +269021,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -253725,6 +269060,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -253763,6 +269099,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -253990,6 +269327,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: -135 m_EndAngle: 135 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -254186,6 +269524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -254205,6 +269546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -254255,6 +269599,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -254274,6 +269621,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -254363,6 +269713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -254382,6 +269735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -254433,6 +269789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -254452,6 +269811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -259321,6 +274683,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &386200102 GameObject: m_ObjectHideFlags: 0 @@ -261377,6 +276752,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 396930305} m_CullTransparentMesh: 0 +--- !u!1 &397072585 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 397072586} + - component: {fileID: 397072588} + - component: {fileID: 397072587} + m_Layer: 0 + m_Name: axis_y3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &397072586 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 397072585} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 801904826} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 241.20001} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &397072587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 397072585} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 30 +--- !u!222 &397072588 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 397072585} + m_CullTransparentMesh: 0 --- !u!1 &397539199 GameObject: m_ObjectHideFlags: 0 @@ -262282,6 +277735,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 401555308} m_CullTransparentMesh: 0 +--- !u!1 &401825895 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 401825896} + - component: {fileID: 401825898} + - component: {fileID: 401825897} + m_Layer: 0 + m_Name: painter_9 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &401825896 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 401825895} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &401825897 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 401825895} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &401825898 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 401825895} + m_CullTransparentMesh: 0 --- !u!1 &402030460 GameObject: m_ObjectHideFlags: 0 @@ -262786,6 +278303,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 406033236} m_CullTransparentMesh: 0 +--- !u!1 &406357851 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 406357852} + - component: {fileID: 406357854} + - component: {fileID: 406357853} + m_Layer: 0 + m_Name: title_sub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &406357852 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406357851} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 178696222} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -24} + m_SizeDelta: {x: 864, y: 22} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &406357853 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406357851} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &406357854 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406357851} + m_CullTransparentMesh: 0 --- !u!1 &406422192 GameObject: m_ObjectHideFlags: 0 @@ -262861,6 +278456,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 406422192} m_CullTransparentMesh: 0 +--- !u!1 &406619058 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 406619059} + m_Layer: 0 + m_Name: axis_x + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &406619059 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 406619058} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1195812872} + - {fileID: 473905719} + - {fileID: 38979886} + - {fileID: 339181271} + - {fileID: 7792005} + - {fileID: 1079852622} + m_Father: {fileID: 1070880691} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &406940913 GameObject: m_ObjectHideFlags: 0 @@ -263465,6 +279101,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Double YAxis @@ -263498,6 +279140,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -263536,6 +279179,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -264271,6 +279915,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -264464,6 +280109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -264483,6 +280131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -264533,6 +280184,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -264552,6 +280206,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -264641,6 +280298,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -264660,6 +280320,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -264711,6 +280374,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -264730,6 +280396,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -264808,6 +280477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -264827,6 +280499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -264878,6 +280553,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -264897,6 +280575,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -264975,6 +280656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -264994,6 +280678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265045,6 +280732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265064,6 +280754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265142,6 +280835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265161,6 +280857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265212,6 +280911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265231,6 +280933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265309,6 +281014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265328,6 +281036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265379,6 +281090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265398,6 +281112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265476,6 +281193,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265495,6 +281215,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265546,6 +281269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265565,6 +281291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265643,6 +281372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265662,6 +281394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265713,6 +281448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -265732,6 +281470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -265829,6 +281570,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -266022,6 +281764,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266041,6 +281786,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266091,6 +281839,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266110,6 +281861,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266199,6 +281953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266218,6 +281975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266269,6 +282029,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266288,6 +282051,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266366,6 +282132,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266385,6 +282154,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266436,6 +282208,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266455,6 +282230,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266533,6 +282311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266552,6 +282333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266603,6 +282387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266622,6 +282409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266700,6 +282490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266719,6 +282512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266770,6 +282566,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266789,6 +282588,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266867,6 +282669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266886,6 +282691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -266937,6 +282745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -266956,6 +282767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -267034,6 +282848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -267053,6 +282870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -267104,6 +282924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -267123,6 +282946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -267201,6 +283027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -267220,6 +283049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -267271,6 +283103,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -267290,6 +283125,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -267980,6 +283818,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 412050908} m_CullTransparentMesh: 0 +--- !u!1 &412498933 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 412498934} + m_Layer: 0 + m_Name: datazoom0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &412498934 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 412498933} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1925695036} + - {fileID: 1215571450} + m_Father: {fileID: 1033575168} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!114 &412632136 MonoBehaviour: m_ObjectHideFlags: 0 @@ -268285,6 +284160,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &412701266 GameObject: m_ObjectHideFlags: 1 @@ -269240,6 +285128,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &417987463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 417987464} + - component: {fileID: 417987466} + - component: {fileID: 417987465} + m_Layer: 0 + m_Name: axis_x11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &417987464 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417987463} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1813797943} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 363.6, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &417987465 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417987463} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x2 +--- !u!222 &417987466 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417987463} + m_CullTransparentMesh: 0 --- !u!1 &418119133 GameObject: m_ObjectHideFlags: 1 @@ -270909,6 +286875,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Ring @@ -270942,6 +286914,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 1 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 1 m_Location: @@ -270980,6 +286953,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -271207,6 +287181,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -271400,6 +287375,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -271419,6 +287397,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -271469,6 +287450,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -271488,6 +287472,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -271577,6 +287564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -271596,6 +287586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -271647,6 +287640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -271666,6 +287662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -271744,6 +287743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -271763,6 +287765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -271814,6 +287819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -271833,6 +287841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -271911,6 +287922,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -271930,6 +287944,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -271981,6 +287998,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -272000,6 +288020,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -272078,6 +288101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -272097,6 +288123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -272148,6 +288177,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -272167,6 +288199,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -272245,6 +288280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -272264,6 +288302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -272315,6 +288356,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -272334,6 +288378,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -272587,6 +288634,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 428764721} m_CullTransparentMesh: 0 +--- !u!1 &428846361 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 428846362} + - component: {fileID: 428846364} + - component: {fileID: 428846363} + m_Layer: 0 + m_Name: axis_y0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &428846362 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 428846361} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 193992667} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 52, y: 70} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &428846363 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 428846361} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &428846364 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 428846361} + m_CullTransparentMesh: 0 --- !u!1 &428862704 GameObject: m_ObjectHideFlags: 1 @@ -273168,6 +289293,119 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 429785917} m_CullTransparentMesh: 0 +--- !u!1 &430083101 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 430083102} + - component: {fileID: 430083104} + - component: {fileID: 430083103} + m_Layer: 0 + m_Name: axis_x15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &430083102 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 430083101} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1498267858} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 990.8, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &430083103 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 430083101} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &430083104 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 430083101} + m_CullTransparentMesh: 0 +--- !u!1 &430287940 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 430287941} + m_Layer: 0 + m_Name: label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &430287941 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 430287940} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &430304721 GameObject: m_ObjectHideFlags: 0 @@ -273944,6 +290182,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 433862808} m_CullTransparentMesh: 0 +--- !u!1 &433934550 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 433934551} + - component: {fileID: 433934553} + - component: {fileID: 433934552} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &433934551 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 433934550} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 889095324} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &433934552 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 433934550} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &433934553 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 433934550} + m_CullTransparentMesh: 0 --- !u!1 &434583285 GameObject: m_ObjectHideFlags: 1 @@ -274086,6 +290402,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 434659977} m_CullTransparentMesh: 0 +--- !u!1 &435313333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 435313334} + - component: {fileID: 435313336} + - component: {fileID: 435313335} + m_Layer: 0 + m_Name: axis_y14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &435313334 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 435313333} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1889259906} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 319.6} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &435313335 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 435313333} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &435313336 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 435313333} + m_CullTransparentMesh: 0 --- !u!1 &435405160 GameObject: m_ObjectHideFlags: 0 @@ -276314,6 +292708,148 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 446377135} m_CullTransparentMesh: 0 +--- !u!1 &446524919 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 446524920} + - component: {fileID: 446524922} + - component: {fileID: 446524921} + m_Layer: 0 + m_Name: painter_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &446524920 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 446524919} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &446524921 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 446524919} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &446524922 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 446524919} + m_CullTransparentMesh: 0 +--- !u!1 &446569231 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 446569232} + - component: {fileID: 446569234} + - component: {fileID: 446569233} + m_Layer: 0 + m_Name: axis_x13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &446569232 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 446569231} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1813797943} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 677.2, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &446569233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 446569231} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x4 +--- !u!222 &446569234 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 446569231} + m_CullTransparentMesh: 0 --- !u!1 &446867150 GameObject: m_ObjectHideFlags: 0 @@ -276964,6 +293500,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: AQI @@ -276997,6 +293539,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -277035,6 +293578,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -277403,6 +293947,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -277596,6 +294141,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -277615,6 +294163,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -277665,6 +294216,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -277684,6 +294238,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -277773,6 +294330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -277792,6 +294352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -277843,6 +294406,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -277862,6 +294428,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -277946,6 +294515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -277965,6 +294537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278016,6 +294591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278035,6 +294613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278119,6 +294700,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278138,6 +294722,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278189,6 +294776,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278208,6 +294798,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278292,6 +294885,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278311,6 +294907,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278362,6 +294961,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278381,6 +294983,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278465,6 +295070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278484,6 +295092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278535,6 +295146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278554,6 +295168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278638,6 +295255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278657,6 +295277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278708,6 +295331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278727,6 +295353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278811,6 +295440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278830,6 +295462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278881,6 +295516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -278900,6 +295538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -278984,6 +295625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279003,6 +295647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279054,6 +295701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279073,6 +295723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279157,6 +295810,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279176,6 +295832,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279227,6 +295886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279246,6 +295908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279330,6 +295995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279349,6 +296017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279400,6 +296071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279419,6 +296093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279503,6 +296180,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279522,6 +296202,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279573,6 +296256,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279592,6 +296278,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279675,6 +296364,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279694,6 +296386,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279745,6 +296440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279764,6 +296462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279847,6 +296548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279866,6 +296570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -279917,6 +296624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -279936,6 +296646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280019,6 +296732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280038,6 +296754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280089,6 +296808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280108,6 +296830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280191,6 +296916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280210,6 +296938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280261,6 +296992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280280,6 +297014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280363,6 +297100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280382,6 +297122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280433,6 +297176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280452,6 +297198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280535,6 +297284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280554,6 +297306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280605,6 +297360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280624,6 +297382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280707,6 +297468,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280726,6 +297490,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280777,6 +297544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280796,6 +297566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280879,6 +297652,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280898,6 +297674,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -280949,6 +297728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -280968,6 +297750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281051,6 +297836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281070,6 +297858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281121,6 +297912,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281140,6 +297934,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281223,6 +298020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281242,6 +298042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281293,6 +298096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281312,6 +298118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281395,6 +298204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281414,6 +298226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281465,6 +298280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281484,6 +298302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281567,6 +298388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281586,6 +298410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281637,6 +298464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281656,6 +298486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281739,6 +298572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281758,6 +298594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281809,6 +298648,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281828,6 +298670,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281911,6 +298756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -281930,6 +298778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -281981,6 +298832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282000,6 +298854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282083,6 +298940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282102,6 +298962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282153,6 +299016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282172,6 +299038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282255,6 +299124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282274,6 +299146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282325,6 +299200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282344,6 +299222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282427,6 +299308,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282446,6 +299330,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282497,6 +299384,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282516,6 +299406,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282599,6 +299492,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282618,6 +299514,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282669,6 +299568,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282688,6 +299590,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282771,6 +299676,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282790,6 +299698,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282841,6 +299752,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282860,6 +299774,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -282943,6 +299860,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -282962,6 +299882,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283013,6 +299936,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283032,6 +299958,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283135,6 +300064,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -283328,6 +300258,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283347,6 +300280,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283397,6 +300333,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283416,6 +300355,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283505,6 +300447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283524,6 +300469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283575,6 +300523,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283594,6 +300545,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283678,6 +300632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283697,6 +300654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283748,6 +300708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283767,6 +300730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283851,6 +300817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283870,6 +300839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -283921,6 +300893,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -283940,6 +300915,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284024,6 +301002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284043,6 +301024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284094,6 +301078,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284113,6 +301100,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284197,6 +301187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284216,6 +301209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284267,6 +301263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284286,6 +301285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284370,6 +301372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284389,6 +301394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284440,6 +301448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284459,6 +301470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284543,6 +301557,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284562,6 +301579,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284613,6 +301633,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284632,6 +301655,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284716,6 +301742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284735,6 +301764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284786,6 +301818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284805,6 +301840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284889,6 +301927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284908,6 +301949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -284959,6 +302003,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -284978,6 +302025,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285062,6 +302112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285081,6 +302134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285132,6 +302188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285151,6 +302210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285235,6 +302297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285254,6 +302319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285305,6 +302373,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285324,6 +302395,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285407,6 +302481,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285426,6 +302503,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285477,6 +302557,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285496,6 +302579,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285579,6 +302665,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285598,6 +302687,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285649,6 +302741,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285668,6 +302763,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285751,6 +302849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285770,6 +302871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285821,6 +302925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285840,6 +302947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285923,6 +303033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -285942,6 +303055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -285993,6 +303109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286012,6 +303131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286095,6 +303217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286114,6 +303239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286165,6 +303293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286184,6 +303315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286267,6 +303401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286286,6 +303423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286337,6 +303477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286356,6 +303499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286439,6 +303585,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286458,6 +303607,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286509,6 +303661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286528,6 +303683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286611,6 +303769,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286630,6 +303791,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286681,6 +303845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286700,6 +303867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286783,6 +303953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286802,6 +303975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286853,6 +304029,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286872,6 +304051,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -286955,6 +304137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -286974,6 +304159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287025,6 +304213,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287044,6 +304235,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287127,6 +304321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287146,6 +304343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287197,6 +304397,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287216,6 +304419,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287299,6 +304505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287318,6 +304527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287369,6 +304581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287388,6 +304603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287471,6 +304689,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287490,6 +304711,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287541,6 +304765,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287560,6 +304787,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287643,6 +304873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287662,6 +304895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287713,6 +304949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287732,6 +304971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287815,6 +305057,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287834,6 +305079,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287885,6 +305133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -287904,6 +305155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -287987,6 +305241,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288006,6 +305263,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288057,6 +305317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288076,6 +305339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288159,6 +305425,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288178,6 +305447,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288229,6 +305501,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288248,6 +305523,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288331,6 +305609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288350,6 +305631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288401,6 +305685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288420,6 +305707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288503,6 +305793,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288522,6 +305815,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288573,6 +305869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288592,6 +305891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288675,6 +305977,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288694,6 +305999,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288745,6 +306053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -288764,6 +306075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -288867,6 +306181,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -289060,6 +306375,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289079,6 +306397,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289129,6 +306450,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289148,6 +306472,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289237,6 +306564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289256,6 +306586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289307,6 +306640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289326,6 +306662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289410,6 +306749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289429,6 +306771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289480,6 +306825,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289499,6 +306847,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289583,6 +306934,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289602,6 +306956,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289653,6 +307010,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289672,6 +307032,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289756,6 +307119,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289775,6 +307141,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289826,6 +307195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289845,6 +307217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289929,6 +307304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -289948,6 +307326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -289999,6 +307380,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290018,6 +307402,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290102,6 +307489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290121,6 +307511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290172,6 +307565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290191,6 +307587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290275,6 +307674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290294,6 +307696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290345,6 +307750,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290364,6 +307772,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290448,6 +307859,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290467,6 +307881,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290518,6 +307935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290537,6 +307957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290621,6 +308044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290640,6 +308066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290691,6 +308120,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290710,6 +308142,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290794,6 +308229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290813,6 +308251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290864,6 +308305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290883,6 +308327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -290967,6 +308414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -290986,6 +308436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291037,6 +308490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291056,6 +308512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291139,6 +308598,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291158,6 +308620,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291209,6 +308674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291228,6 +308696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291311,6 +308782,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291330,6 +308804,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291381,6 +308858,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291400,6 +308880,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291483,6 +308966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291502,6 +308988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291553,6 +309042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291572,6 +309064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291655,6 +309150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291674,6 +309172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291725,6 +309226,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291744,6 +309248,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291827,6 +309334,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291846,6 +309356,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291897,6 +309410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -291916,6 +309432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -291999,6 +309518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292018,6 +309540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292069,6 +309594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292088,6 +309616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292171,6 +309702,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292190,6 +309724,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292241,6 +309778,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292260,6 +309800,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292343,6 +309886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292362,6 +309908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292413,6 +309962,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292432,6 +309984,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292515,6 +310070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292534,6 +310092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292585,6 +310146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292604,6 +310168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292687,6 +310254,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292706,6 +310276,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292757,6 +310330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292776,6 +310352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292859,6 +310438,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292878,6 +310460,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -292929,6 +310514,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -292948,6 +310536,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293031,6 +310622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293050,6 +310644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293101,6 +310698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293120,6 +310720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293203,6 +310806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293222,6 +310828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293273,6 +310882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293292,6 +310904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293375,6 +310990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293394,6 +311012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293445,6 +311066,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293464,6 +311088,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293547,6 +311174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293566,6 +311196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293617,6 +311250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293636,6 +311272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293719,6 +311358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293738,6 +311380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293789,6 +311434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293808,6 +311456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293891,6 +311542,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293910,6 +311564,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -293961,6 +311618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -293980,6 +311640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -294063,6 +311726,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -294082,6 +311748,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -294133,6 +311802,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -294152,6 +311824,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -294235,6 +311910,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -294254,6 +311932,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -294305,6 +311986,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -294324,6 +312008,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -294407,6 +312094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -294426,6 +312116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -294477,6 +312170,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -294496,6 +312192,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -295346,6 +313045,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &456022027 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 456022028} + m_Layer: 0 + m_Name: title0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &456022028 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 456022027} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 285225106} + - {fileID: 1437194506} + m_Father: {fileID: 651764999} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -5} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0.5, y: 1} --- !u!1 &456249483 GameObject: m_ObjectHideFlags: 1 @@ -296021,6 +313757,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &462159530 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 462159531} + - component: {fileID: 462159533} + - component: {fileID: 462159532} + m_Layer: 0 + m_Name: axis_x10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &462159531 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462159530} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 264878278} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 442, y: -33} + m_SizeDelta: {x: 0, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &462159532 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462159530} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &462159533 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462159530} + m_CullTransparentMesh: 0 --- !u!1 &462191596 GameObject: m_ObjectHideFlags: 1 @@ -296778,6 +314592,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 0 m_PieSelectedOffset: 0 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &464145093 GameObject: m_ObjectHideFlags: 1 @@ -298111,6 +315938,7 @@ RectTransform: - {fileID: 372355850} - {fileID: 1944495356} - {fileID: 390475076} + - {fileID: 850711253} - {fileID: 1415049556} m_Father: {fileID: 945062866} m_RootOrder: 1 @@ -298168,6 +315996,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -298201,6 +316035,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -298239,6 +316074,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -298972,6 +316808,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -299165,6 +317002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299184,6 +317024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299234,6 +317077,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299253,6 +317099,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299342,6 +317191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299361,6 +317213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299412,6 +317267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299431,6 +317289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299509,6 +317370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299528,6 +317392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299579,6 +317446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299598,6 +317468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299676,6 +317549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299695,6 +317571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299746,6 +317625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299765,6 +317647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299843,6 +317728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299862,6 +317750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -299913,6 +317804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -299932,6 +317826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -300010,6 +317907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -300029,6 +317929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -300080,6 +317983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -300099,6 +318005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -300247,6 +318156,84 @@ RectTransform: m_AnchoredPosition: {x: -287.33334, y: 143.66667} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &473905718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 473905719} + - component: {fileID: 473905721} + - component: {fileID: 473905720} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &473905719 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 473905718} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 406619059} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 442, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &473905720 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 473905718} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 2020-10-25 +--- !u!222 &473905721 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 473905718} + m_CullTransparentMesh: 0 --- !u!1 &475052680 GameObject: m_ObjectHideFlags: 1 @@ -300653,6 +318640,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 476948765} m_CullTransparentMesh: 0 +--- !u!1 &477240596 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 477240597} + - component: {fileID: 477240599} + - component: {fileID: 477240598} + m_Layer: 0 + m_Name: painter_8 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &477240597 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 477240596} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &477240598 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 477240596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &477240599 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 477240596} + m_CullTransparentMesh: 0 --- !u!1 &477638259 GameObject: m_ObjectHideFlags: 1 @@ -302753,6 +320804,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 0 m_PieSelectedOffset: 0 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &488477734 GameObject: m_ObjectHideFlags: 1 @@ -304519,6 +322583,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &497369925 GameObject: m_ObjectHideFlags: 0 @@ -305985,6 +324062,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 0 m_PieSelectedOffset: 0 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &503000983 GameObject: m_ObjectHideFlags: 0 @@ -306238,7 +324328,7 @@ RectTransform: - {fileID: 246205862} - {fileID: 1995126193} m_Father: {fileID: 1867673941} - m_RootOrder: 22 + m_RootOrder: 23 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -306561,6 +324651,81 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0, y: 0} +--- !u!1 &505434490 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 505434491} + - component: {fileID: 505434493} + - component: {fileID: 505434492} + m_Layer: 0 + m_Name: axis_x_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &505434491 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 505434490} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 614413559} + m_Father: {fileID: 989549433} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &505434492 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 505434490} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &505434493 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 505434490} + m_CullTransparentMesh: 0 --- !u!1 &505688882 GameObject: m_ObjectHideFlags: 0 @@ -308646,6 +326811,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 515100620} m_CullTransparentMesh: 0 +--- !u!1 &515201567 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 515201568} + - component: {fileID: 515201570} + - component: {fileID: 515201569} + m_Layer: 0 + m_Name: axis_y14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &515201568 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 515201567} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2053519850} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 311.6} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &515201569 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 515201567} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &515201570 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 515201567} + m_CullTransparentMesh: 0 --- !u!1 &515320106 GameObject: m_ObjectHideFlags: 0 @@ -309114,6 +327357,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Simple LineChart @@ -309147,6 +327396,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -309185,6 +327435,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -309920,6 +328171,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -310113,6 +328365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310132,6 +328387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310182,6 +328440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310201,6 +328462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310290,6 +328554,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310309,6 +328576,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310360,6 +328630,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310379,6 +328652,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310457,6 +328733,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310476,6 +328755,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310527,6 +328809,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310546,6 +328831,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310624,6 +328912,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310643,6 +328934,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310694,6 +328988,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310713,6 +329010,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310791,6 +329091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310810,6 +329113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310861,6 +329167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310880,6 +329189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -310958,6 +329270,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -310977,6 +329292,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -311028,6 +329346,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -311047,6 +329368,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -311125,6 +329449,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -311144,6 +329471,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -311195,6 +329525,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -311214,6 +329547,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -311292,6 +329628,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -311311,6 +329650,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -311362,6 +329704,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -311381,6 +329726,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -313250,6 +331598,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &521957720 GameObject: m_ObjectHideFlags: 0 @@ -313866,6 +332227,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 523973958} m_CullTransparentMesh: 0 +--- !u!1 &524500574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 524500575} + - component: {fileID: 524500577} + - component: {fileID: 524500576} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &524500575 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 524500574} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 635823336} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &524500576 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 524500574} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &524500577 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 524500574} + m_CullTransparentMesh: 0 --- !u!1 &524519441 GameObject: m_ObjectHideFlags: 0 @@ -315450,6 +333889,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 535311839} m_CullTransparentMesh: 0 +--- !u!1 &535352481 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 535352482} + - component: {fileID: 535352484} + - component: {fileID: 535352483} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &535352482 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 535352481} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 83293755} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &535352483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 535352481} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &535352484 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 535352481} + m_CullTransparentMesh: 0 --- !u!1 &535481571 GameObject: m_ObjectHideFlags: 1 @@ -316165,6 +334682,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &537904996 GameObject: m_ObjectHideFlags: 0 @@ -316949,6 +335479,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Show As Positive @@ -316982,6 +335518,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -317020,6 +335557,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -317753,6 +336291,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -317946,6 +336485,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -317965,6 +336507,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318015,6 +336560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318034,6 +336582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318123,6 +336674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318142,6 +336696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318193,6 +336750,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318212,6 +336772,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318290,6 +336853,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318309,6 +336875,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318360,6 +336929,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318379,6 +336951,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318457,6 +337032,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318476,6 +337054,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318527,6 +337108,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318546,6 +337130,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318624,6 +337211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318643,6 +337233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318694,6 +337287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318713,6 +337309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318791,6 +337390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318810,6 +337412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318861,6 +337466,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -318880,6 +337488,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -318977,6 +337588,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -319170,6 +337782,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319189,6 +337804,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319239,6 +337857,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319258,6 +337879,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319347,6 +337971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319366,6 +337993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319417,6 +338047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319436,6 +338069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319514,6 +338150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319533,6 +338172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319584,6 +338226,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319603,6 +338248,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319681,6 +338329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319700,6 +338351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319751,6 +338405,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319770,6 +338427,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319848,6 +338508,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319867,6 +338530,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -319918,6 +338584,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -319937,6 +338606,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -320015,6 +338687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -320034,6 +338709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -320085,6 +338763,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -320104,6 +338785,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -322918,6 +341602,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &559392143 GameObject: m_ObjectHideFlags: 0 @@ -323226,6 +341923,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 560654419} m_CullTransparentMesh: 0 +--- !u!1 &561183752 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 561183753} + - component: {fileID: 561183755} + - component: {fileID: 561183754} + m_Layer: 0 + m_Name: axis_x11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &561183753 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 561183752} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1498267858} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 363.6, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &561183754 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 561183752} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x2 +--- !u!222 &561183755 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 561183752} + m_CullTransparentMesh: 0 --- !u!1 &561263978 GameObject: m_ObjectHideFlags: 1 @@ -325689,6 +344464,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Vertical @@ -325722,6 +344503,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -325760,6 +344542,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -326495,6 +345278,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -326688,6 +345472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -326707,6 +345494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -326757,6 +345547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -326776,6 +345569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -326865,6 +345661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -326884,6 +345683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -326935,6 +345737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -326954,6 +345759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327032,6 +345840,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327051,6 +345862,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327102,6 +345916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327121,6 +345938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327199,6 +346019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327218,6 +346041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327269,6 +346095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327288,6 +346117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327366,6 +346198,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327385,6 +346220,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327436,6 +346274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327455,6 +346296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327533,6 +346377,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327552,6 +346399,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327603,6 +346453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327622,6 +346475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327700,6 +346556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327719,6 +346578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327770,6 +346632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327789,6 +346654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327867,6 +346735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327886,6 +346757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327937,6 +346811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -327956,6 +346833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -327989,6 +346869,324 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 575086070} m_CullTransparentMesh: 0 +--- !u!114 &575266801 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6f28c6b3fb24d49afbe348cfadd0e1c7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Theme: 0 + m_ThemeName: Default + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_ContrastColor: + serializedVersion: 2 + rgba: 4283256145 + m_BackgroundColor: + serializedVersion: 2 + rgba: 4294967295 + m_ColorPalette: + - serializedVersion: 2 + rgba: 4281415106 + - serializedVersion: 2 + rgba: 4283712815 + - serializedVersion: 2 + rgba: 4289241185 + - serializedVersion: 2 + rgba: 4284842708 + - serializedVersion: 2 + rgba: 4289644433 + - serializedVersion: 2 + rgba: 4286816116 + - serializedVersion: 2 + rgba: 4280452810 + - serializedVersion: 2 + rgba: 4288324285 + - serializedVersion: 2 + rgba: 4285821038 + - serializedVersion: 2 + rgba: 4285556052 + - serializedVersion: 2 + rgba: 4292070596 + m_Common: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 20 + m_Title: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 24 + m_SubTitle: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 22 + m_Legend: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 20 + m_UnableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} + m_Axis: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_RadiusAxis: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_AngleAxis: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_Polar: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_Gauge: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 15 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 15 + m_SplitLineColor: + serializedVersion: 2 + rgba: 4294967295 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4294967295 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_BarBackgroundColor: + serializedVersion: 2 + rgba: 4291348680 + m_StageColor: + - m_Percent: 0.2 + m_Color: + serializedVersion: 2 + rgba: 4289644433 + - m_Percent: 0.8 + m_Color: + serializedVersion: 2 + rgba: 4288579171 + - m_Percent: 1 + m_Color: + serializedVersion: 2 + rgba: 4281415106 + m_Radar: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 4294375158 + - serializedVersion: 2 + rgba: 4293388263 + m_Tooltip: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 1, g: 1, b: 1, a: 1} + m_TextBackgroundColor: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + m_FontSize: 20 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineColor: + serializedVersion: 2 + rgba: 1680419113 + m_AreaColor: + serializedVersion: 2 + rgba: 542200145 + m_LabelTextColor: + serializedVersion: 2 + rgba: 4294967295 + m_LabelBackgroundColor: + serializedVersion: 2 + rgba: 4280887593 + m_DataZoom: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 20 + m_BorderWidth: 0.5 + m_DataLineWidth: 0.5 + m_FillerColor: + serializedVersion: 2 + rgba: 1858910119 + m_BorderColor: + serializedVersion: 2 + rgba: 4292730333 + m_DataLineColor: + serializedVersion: 2 + rgba: 4283712815 + m_DataAreaColor: + serializedVersion: 2 + rgba: 1431586095 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_VisualMap: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 4291611852 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_TriangeLen: 20 + m_Serie: + m_LineWidth: 1.4 + m_LineSymbolSize: 4 + m_LineSymbolSelectedSize: 8 + m_ScatterSymbolSize: 20 + m_ScatterSymbolSelectedSize: 30 + m_PieTooltipExtraRadius: 8 + m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 4281415106 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 4283844145 + m_CandlestickBorderWidth: 1 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 4281415106 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 4283844145 --- !u!1 &575393202 GameObject: m_ObjectHideFlags: 1 @@ -328159,6 +347357,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -328192,6 +347396,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -328230,6 +347435,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -328963,6 +348169,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -329156,6 +348363,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -329175,6 +348385,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -329225,6 +348438,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -329244,6 +348460,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -329333,6 +348552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -329352,6 +348574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -329403,6 +348628,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -329422,6 +348650,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -329501,6 +348732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -329520,6 +348754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -329571,6 +348808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -329590,6 +348830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -329688,6 +348931,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -329881,6 +349125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -329900,6 +349147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -329950,6 +349200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -329969,6 +349222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330058,6 +349314,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330077,6 +349336,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330128,6 +349390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330147,6 +349412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330231,6 +349499,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330250,6 +349521,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330301,6 +349575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330320,6 +349597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330404,6 +349684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330423,6 +349706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330474,6 +349760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330493,6 +349782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330577,6 +349869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330596,6 +349891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330647,6 +349945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330666,6 +349967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330750,6 +350054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330769,6 +350076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330820,6 +350130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330839,6 +350152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330923,6 +350239,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -330942,6 +350261,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -330993,6 +350315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331012,6 +350337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331096,6 +350424,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331115,6 +350446,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331166,6 +350500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331185,6 +350522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331269,6 +350609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331288,6 +350631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331339,6 +350685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331358,6 +350707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331442,6 +350794,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331461,6 +350816,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331512,6 +350870,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331531,6 +350892,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331615,6 +350979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331634,6 +351001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331685,6 +351055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331704,6 +351077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331788,6 +351164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331807,6 +351186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331858,6 +351240,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331877,6 +351262,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -331955,6 +351343,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -331974,6 +351365,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332025,6 +351419,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332044,6 +351441,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332122,6 +351522,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332141,6 +351544,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332192,6 +351598,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332211,6 +351620,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332289,6 +351701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332308,6 +351723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332359,6 +351777,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332378,6 +351799,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332456,6 +351880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332475,6 +351902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332526,6 +351956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332545,6 +351978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332623,6 +352059,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332642,6 +352081,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332693,6 +352135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332712,6 +352157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332790,6 +352238,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332809,6 +352260,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332860,6 +352314,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332879,6 +352336,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -332957,6 +352417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -332976,6 +352439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333027,6 +352493,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333046,6 +352515,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333124,6 +352596,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333143,6 +352618,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333194,6 +352672,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333213,6 +352694,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333291,6 +352775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333310,6 +352797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333361,6 +352851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333380,6 +352873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333458,6 +352954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333477,6 +352976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333528,6 +353030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333547,6 +353052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333625,6 +353133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333644,6 +353155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333695,6 +353209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333714,6 +353231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333792,6 +353312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333811,6 +353334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333862,6 +353388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333881,6 +353410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -333959,6 +353491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -333978,6 +353513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334029,6 +353567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334048,6 +353589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334126,6 +353670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334145,6 +353692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334196,6 +353746,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334215,6 +353768,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334293,6 +353849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334312,6 +353871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334363,6 +353925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334382,6 +353947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334460,6 +354028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334479,6 +354050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334530,6 +354104,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334549,6 +354126,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334627,6 +354207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334646,6 +354229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334697,6 +354283,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334716,6 +354305,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334794,6 +354386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334813,6 +354408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334864,6 +354462,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334883,6 +354484,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -334961,6 +354565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -334980,6 +354587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335031,6 +354641,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335050,6 +354663,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335128,6 +354744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335147,6 +354766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335198,6 +354820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335217,6 +354842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335295,6 +354923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335314,6 +354945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335365,6 +354999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335384,6 +355021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335462,6 +355102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335481,6 +355124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335532,6 +355178,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335551,6 +355200,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335629,6 +355281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335648,6 +355303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335699,6 +355357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335718,6 +355379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335796,6 +355460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335815,6 +355482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335866,6 +355536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335885,6 +355558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -335963,6 +355639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -335982,6 +355661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336033,6 +355715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336052,6 +355737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336130,6 +355818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336149,6 +355840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336200,6 +355894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336219,6 +355916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336297,6 +355997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336316,6 +356019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336367,6 +356073,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336386,6 +356095,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336464,6 +356176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336483,6 +356198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336534,6 +356252,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336553,6 +356274,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336631,6 +356355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336650,6 +356377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336701,6 +356431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336720,6 +356453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336798,6 +356534,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336817,6 +356556,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336868,6 +356610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336887,6 +356632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -336965,6 +356713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -336984,6 +356735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337035,6 +356789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337054,6 +356811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337132,6 +356892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337151,6 +356914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337202,6 +356968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337221,6 +356990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337299,6 +357071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337318,6 +357093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337369,6 +357147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337388,6 +357169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337466,6 +357250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337485,6 +357272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337536,6 +357326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337555,6 +357348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337633,6 +357429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337652,6 +357451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337703,6 +357505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337722,6 +357527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337800,6 +357608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337819,6 +357630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337870,6 +357684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337889,6 +357706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -337967,6 +357787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -337986,6 +357809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338037,6 +357863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338056,6 +357885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338134,6 +357966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338153,6 +357988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338204,6 +358042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338223,6 +358064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338301,6 +358145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338320,6 +358167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338371,6 +358221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338390,6 +358243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338468,6 +358324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338487,6 +358346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338538,6 +358400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338557,6 +358422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338635,6 +358503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338654,6 +358525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338705,6 +358579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338724,6 +358601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338802,6 +358682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338821,6 +358704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338872,6 +358758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338891,6 +358780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -338969,6 +358861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -338988,6 +358883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339039,6 +358937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339058,6 +358959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339136,6 +359040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339155,6 +359062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339206,6 +359116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339225,6 +359138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339303,6 +359219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339322,6 +359241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339373,6 +359295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339392,6 +359317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339470,6 +359398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339489,6 +359420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339540,6 +359474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339559,6 +359496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339637,6 +359577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339656,6 +359599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339707,6 +359653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339726,6 +359675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339804,6 +359756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339823,6 +359778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339874,6 +359832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339893,6 +359854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -339971,6 +359935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -339990,6 +359957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340041,6 +360011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340060,6 +360033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340138,6 +360114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340157,6 +360136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340208,6 +360190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340227,6 +360212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340305,6 +360293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340324,6 +360315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340375,6 +360369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340394,6 +360391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340472,6 +360472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340491,6 +360494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340542,6 +360548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340561,6 +360570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340639,6 +360651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340658,6 +360673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340709,6 +360727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340728,6 +360749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340806,6 +360830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340825,6 +360852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340876,6 +360906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340895,6 +360928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -340973,6 +361009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -340992,6 +361031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341043,6 +361085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341062,6 +361107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341140,6 +361188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341159,6 +361210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341210,6 +361264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341229,6 +361286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341307,6 +361367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341326,6 +361389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341377,6 +361443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341396,6 +361465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341474,6 +361546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341493,6 +361568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341544,6 +361622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341563,6 +361644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341641,6 +361725,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341660,6 +361747,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341711,6 +361801,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341730,6 +361823,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341808,6 +361904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341827,6 +361926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341878,6 +361980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341897,6 +362002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -341975,6 +362083,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -341994,6 +362105,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342045,6 +362159,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342064,6 +362181,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342142,6 +362262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342161,6 +362284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342212,6 +362338,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342231,6 +362360,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342309,6 +362441,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342328,6 +362463,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342379,6 +362517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342398,6 +362539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342476,6 +362620,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342495,6 +362642,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342546,6 +362696,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342565,6 +362718,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342643,6 +362799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342662,6 +362821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342713,6 +362875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342732,6 +362897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342810,6 +362978,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342829,6 +363000,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342880,6 +363054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342899,6 +363076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -342977,6 +363157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -342996,6 +363179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343047,6 +363233,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343066,6 +363255,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343144,6 +363336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343163,6 +363358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343214,6 +363412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343233,6 +363434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343311,6 +363515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343330,6 +363537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343381,6 +363591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343400,6 +363613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343478,6 +363694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343497,6 +363716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343548,6 +363770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343567,6 +363792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343645,6 +363873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343664,6 +363895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343715,6 +363949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343734,6 +363971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343812,6 +364052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343831,6 +364074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343882,6 +364128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343901,6 +364150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -343979,6 +364231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -343998,6 +364253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344049,6 +364307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344068,6 +364329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344146,6 +364410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344165,6 +364432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344216,6 +364486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344235,6 +364508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344313,6 +364589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344332,6 +364611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344383,6 +364665,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344402,6 +364687,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344480,6 +364768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344499,6 +364790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344550,6 +364844,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344569,6 +364866,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344647,6 +364947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344666,6 +364969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344717,6 +365023,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344736,6 +365045,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344814,6 +365126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344833,6 +365148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344884,6 +365202,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -344903,6 +365224,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -344981,6 +365305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345000,6 +365327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345051,6 +365381,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345070,6 +365403,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345148,6 +365484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345167,6 +365506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345218,6 +365560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345237,6 +365582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345315,6 +365663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345334,6 +365685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345385,6 +365739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345404,6 +365761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345482,6 +365842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345501,6 +365864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345552,6 +365918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345571,6 +365940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345649,6 +366021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345668,6 +366043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345719,6 +366097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345738,6 +366119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345816,6 +366200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345835,6 +366222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345886,6 +366276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -345905,6 +366298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -345983,6 +366379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346002,6 +366401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346053,6 +366455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346072,6 +366477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346150,6 +366558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346169,6 +366580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346220,6 +366634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346239,6 +366656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346317,6 +366737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346336,6 +366759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346387,6 +366813,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346406,6 +366835,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346484,6 +366916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346503,6 +366938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346554,6 +366992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346573,6 +367014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346651,6 +367095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346670,6 +367117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346721,6 +367171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346740,6 +367193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346818,6 +367274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346837,6 +367296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346888,6 +367350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -346907,6 +367372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -346985,6 +367453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347004,6 +367475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347055,6 +367529,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347074,6 +367551,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347152,6 +367632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347171,6 +367654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347222,6 +367708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347241,6 +367730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347319,6 +367811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347338,6 +367833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347389,6 +367887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347408,6 +367909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347486,6 +367990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347505,6 +368012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347556,6 +368066,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347575,6 +368088,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347653,6 +368169,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347672,6 +368191,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347723,6 +368245,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347742,6 +368267,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347820,6 +368348,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347839,6 +368370,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347890,6 +368424,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -347909,6 +368446,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -347987,6 +368527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348006,6 +368549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348057,6 +368603,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348076,6 +368625,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348154,6 +368706,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348173,6 +368728,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348224,6 +368782,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348243,6 +368804,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348321,6 +368885,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348340,6 +368907,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348391,6 +368961,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348410,6 +368983,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348488,6 +369064,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348507,6 +369086,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348558,6 +369140,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348577,6 +369162,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348655,6 +369243,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348674,6 +369265,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348725,6 +369319,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348744,6 +369341,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348822,6 +369422,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348841,6 +369444,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348892,6 +369498,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -348911,6 +369520,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -348989,6 +369601,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349008,6 +369623,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349059,6 +369677,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349078,6 +369699,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349156,6 +369780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349175,6 +369802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349226,6 +369856,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349245,6 +369878,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349323,6 +369959,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349342,6 +369981,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349393,6 +370035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349412,6 +370057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349490,6 +370138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349509,6 +370160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349560,6 +370214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349579,6 +370236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349657,6 +370317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349676,6 +370339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349727,6 +370393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349746,6 +370415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349824,6 +370496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349843,6 +370518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349894,6 +370572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -349913,6 +370594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -349991,6 +370675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350010,6 +370697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350061,6 +370751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350080,6 +370773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350158,6 +370854,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350177,6 +370876,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350228,6 +370930,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350247,6 +370952,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350325,6 +371033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350344,6 +371055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350395,6 +371109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350414,6 +371131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350492,6 +371212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350511,6 +371234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350562,6 +371288,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350581,6 +371310,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350659,6 +371391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350678,6 +371413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350729,6 +371467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350748,6 +371489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350826,6 +371570,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350845,6 +371592,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350896,6 +371646,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -350915,6 +371668,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -350993,6 +371749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351012,6 +371771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351063,6 +371825,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351082,6 +371847,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351160,6 +371928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351179,6 +371950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351230,6 +372004,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351249,6 +372026,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351327,6 +372107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351346,6 +372129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351397,6 +372183,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351416,6 +372205,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351494,6 +372286,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351513,6 +372308,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351564,6 +372362,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351583,6 +372384,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351661,6 +372465,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351680,6 +372487,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351731,6 +372541,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351750,6 +372563,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351828,6 +372644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351847,6 +372666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351898,6 +372720,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -351917,6 +372742,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -351995,6 +372823,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352014,6 +372845,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352065,6 +372899,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352084,6 +372921,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352162,6 +373002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352181,6 +373024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352232,6 +373078,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352251,6 +373100,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352329,6 +373181,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352348,6 +373203,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352399,6 +373257,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352418,6 +373279,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352496,6 +373360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352515,6 +373382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352566,6 +373436,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352585,6 +373458,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352663,6 +373539,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352682,6 +373561,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352733,6 +373615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352752,6 +373637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352830,6 +373718,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352849,6 +373740,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352900,6 +373794,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -352919,6 +373816,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -352997,6 +373897,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353016,6 +373919,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353067,6 +373973,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353086,6 +373995,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353164,6 +374076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353183,6 +374098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353234,6 +374152,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353253,6 +374174,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353331,6 +374255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353350,6 +374277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353401,6 +374331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353420,6 +374353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353498,6 +374434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353517,6 +374456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353568,6 +374510,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353587,6 +374532,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353665,6 +374613,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353684,6 +374635,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353735,6 +374689,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353754,6 +374711,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353832,6 +374792,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353851,6 +374814,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353902,6 +374868,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -353921,6 +374890,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -353999,6 +374971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354018,6 +374993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354069,6 +375047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354088,6 +375069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354166,6 +375150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354185,6 +375172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354236,6 +375226,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354255,6 +375248,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354333,6 +375329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354352,6 +375351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354403,6 +375405,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354422,6 +375427,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354500,6 +375508,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354519,6 +375530,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354570,6 +375584,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354589,6 +375606,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354667,6 +375687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354686,6 +375709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354737,6 +375763,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354756,6 +375785,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354834,6 +375866,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354853,6 +375888,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -354904,6 +375942,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -354923,6 +375964,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355001,6 +376045,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355020,6 +376067,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355071,6 +376121,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355090,6 +376143,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355168,6 +376224,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355187,6 +376246,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355238,6 +376300,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355257,6 +376322,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355335,6 +376403,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355354,6 +376425,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355405,6 +376479,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355424,6 +376501,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355502,6 +376582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355521,6 +376604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355572,6 +376658,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355591,6 +376680,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355669,6 +376761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355688,6 +376783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355739,6 +376837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355758,6 +376859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355836,6 +376940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355855,6 +376962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -355906,6 +377016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -355925,6 +377038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356003,6 +377119,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356022,6 +377141,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356073,6 +377195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356092,6 +377217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356170,6 +377298,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356189,6 +377320,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356240,6 +377374,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356259,6 +377396,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356337,6 +377477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356356,6 +377499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356407,6 +377553,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356426,6 +377575,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356504,6 +377656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356523,6 +377678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356574,6 +377732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356593,6 +377754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356671,6 +377835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356690,6 +377857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356741,6 +377911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356760,6 +377933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356838,6 +378014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356857,6 +378036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -356908,6 +378090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -356927,6 +378112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357005,6 +378193,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357024,6 +378215,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357075,6 +378269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357094,6 +378291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357172,6 +378372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357191,6 +378394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357242,6 +378448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357261,6 +378470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357339,6 +378551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357358,6 +378573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357409,6 +378627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357428,6 +378649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357506,6 +378730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357525,6 +378752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357576,6 +378806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357595,6 +378828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357673,6 +378909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357692,6 +378931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357743,6 +378985,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357762,6 +379007,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357840,6 +379088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357859,6 +379110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -357910,6 +379164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -357929,6 +379186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358007,6 +379267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358026,6 +379289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358077,6 +379343,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358096,6 +379365,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358174,6 +379446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358193,6 +379468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358244,6 +379522,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358263,6 +379544,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358341,6 +379625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358360,6 +379647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358411,6 +379701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358430,6 +379723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358508,6 +379804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358527,6 +379826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358578,6 +379880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358597,6 +379902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358675,6 +379983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358694,6 +380005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358745,6 +380059,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358764,6 +380081,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358842,6 +380162,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358861,6 +380184,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -358912,6 +380238,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -358931,6 +380260,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359009,6 +380341,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359028,6 +380363,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359079,6 +380417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359098,6 +380439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359176,6 +380520,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359195,6 +380542,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359246,6 +380596,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359265,6 +380618,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359343,6 +380699,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359362,6 +380721,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359413,6 +380775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359432,6 +380797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359510,6 +380878,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359529,6 +380900,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359580,6 +380954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359599,6 +380976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359677,6 +381057,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359696,6 +381079,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359747,6 +381133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359766,6 +381155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359844,6 +381236,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359863,6 +381258,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -359914,6 +381312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -359933,6 +381334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360011,6 +381415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360030,6 +381437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360081,6 +381491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360100,6 +381513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360178,6 +381594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360197,6 +381616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360248,6 +381670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360267,6 +381692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360345,6 +381773,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360364,6 +381795,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360415,6 +381849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360434,6 +381871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360512,6 +381952,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360531,6 +381974,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360582,6 +382028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360601,6 +382050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360679,6 +382131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360698,6 +382153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360749,6 +382207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360768,6 +382229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360846,6 +382310,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360865,6 +382332,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -360916,6 +382386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -360935,6 +382408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361013,6 +382489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361032,6 +382511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361083,6 +382565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361102,6 +382587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361180,6 +382668,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361199,6 +382690,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361250,6 +382744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361269,6 +382766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361347,6 +382847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361366,6 +382869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361417,6 +382923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361436,6 +382945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361514,6 +383026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361533,6 +383048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361584,6 +383102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361603,6 +383124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361681,6 +383205,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361700,6 +383227,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361751,6 +383281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361770,6 +383303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361848,6 +383384,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361867,6 +383406,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -361918,6 +383460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -361937,6 +383482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362015,6 +383563,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362034,6 +383585,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362085,6 +383639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362104,6 +383661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362182,6 +383742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362201,6 +383764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362252,6 +383818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362271,6 +383840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362349,6 +383921,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362368,6 +383943,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362419,6 +383997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362438,6 +384019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362516,6 +384100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362535,6 +384122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362586,6 +384176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362605,6 +384198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362683,6 +384279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362702,6 +384301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362753,6 +384355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362772,6 +384377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362850,6 +384458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362869,6 +384480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -362920,6 +384534,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -362939,6 +384556,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363017,6 +384637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363036,6 +384659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363087,6 +384713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363106,6 +384735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363184,6 +384816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363203,6 +384838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363254,6 +384892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363273,6 +384914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363351,6 +384995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363370,6 +385017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363421,6 +385071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363440,6 +385093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363518,6 +385174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363537,6 +385196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363588,6 +385250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363607,6 +385272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363685,6 +385353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363704,6 +385375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363755,6 +385429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363774,6 +385451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363852,6 +385532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363871,6 +385554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -363922,6 +385608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -363941,6 +385630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364019,6 +385711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364038,6 +385733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364089,6 +385787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364108,6 +385809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364186,6 +385890,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364205,6 +385912,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364256,6 +385966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364275,6 +385988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364353,6 +386069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364372,6 +386091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364423,6 +386145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364442,6 +386167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364520,6 +386248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364539,6 +386270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364590,6 +386324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364609,6 +386346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364687,6 +386427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364706,6 +386449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364757,6 +386503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364776,6 +386525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364854,6 +386606,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364873,6 +386628,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -364924,6 +386682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -364943,6 +386704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365021,6 +386785,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365040,6 +386807,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365091,6 +386861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365110,6 +386883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365188,6 +386964,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365207,6 +386986,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365258,6 +387040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365277,6 +387062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365355,6 +387143,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365374,6 +387165,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365425,6 +387219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365444,6 +387241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365522,6 +387322,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365541,6 +387344,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365592,6 +387398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365611,6 +387420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365689,6 +387501,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365708,6 +387523,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365759,6 +387577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365778,6 +387599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365856,6 +387680,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365875,6 +387702,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -365926,6 +387756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -365945,6 +387778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366023,6 +387859,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366042,6 +387881,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366093,6 +387935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366112,6 +387957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366190,6 +388038,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366209,6 +388060,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366260,6 +388114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366279,6 +388136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366357,6 +388217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366376,6 +388239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366427,6 +388293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366446,6 +388315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366524,6 +388396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366543,6 +388418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366594,6 +388472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366613,6 +388494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366691,6 +388575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366710,6 +388597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366761,6 +388651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366780,6 +388673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366858,6 +388754,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366877,6 +388776,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -366928,6 +388830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -366947,6 +388852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367025,6 +388933,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367044,6 +388955,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367095,6 +389009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367114,6 +389031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367192,6 +389112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367211,6 +389134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367262,6 +389188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367281,6 +389210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367359,6 +389291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367378,6 +389313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367429,6 +389367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367448,6 +389389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367526,6 +389470,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367545,6 +389492,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367596,6 +389546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367615,6 +389568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367693,6 +389649,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367712,6 +389671,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367763,6 +389725,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367782,6 +389747,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367860,6 +389828,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367879,6 +389850,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -367930,6 +389904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -367949,6 +389926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368027,6 +390007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368046,6 +390029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368097,6 +390083,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368116,6 +390105,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368194,6 +390186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368213,6 +390208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368264,6 +390262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368283,6 +390284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368361,6 +390365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368380,6 +390387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368431,6 +390441,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368450,6 +390463,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368528,6 +390544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368547,6 +390566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368598,6 +390620,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368617,6 +390642,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368695,6 +390723,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368714,6 +390745,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368765,6 +390799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368784,6 +390821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368862,6 +390902,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368881,6 +390924,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -368932,6 +390978,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -368951,6 +391000,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369029,6 +391081,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369048,6 +391103,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369099,6 +391157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369118,6 +391179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369196,6 +391260,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369215,6 +391282,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369266,6 +391336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369285,6 +391358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369363,6 +391439,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369382,6 +391461,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369433,6 +391515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369452,6 +391537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369530,6 +391618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369549,6 +391640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369600,6 +391694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369619,6 +391716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369697,6 +391797,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369716,6 +391819,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369767,6 +391873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369786,6 +391895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369864,6 +391976,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369883,6 +391998,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -369934,6 +392052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -369953,6 +392074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370031,6 +392155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370050,6 +392177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370101,6 +392231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370120,6 +392253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370198,6 +392334,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370217,6 +392356,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370268,6 +392410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370287,6 +392432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370365,6 +392513,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370384,6 +392535,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370435,6 +392589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370454,6 +392611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370532,6 +392692,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370551,6 +392714,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370602,6 +392768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370621,6 +392790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370699,6 +392871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370718,6 +392893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370769,6 +392947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370788,6 +392969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370866,6 +393050,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370885,6 +393072,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -370936,6 +393126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -370955,6 +393148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371033,6 +393229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371052,6 +393251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371103,6 +393305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371122,6 +393327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371200,6 +393408,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371219,6 +393430,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371270,6 +393484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371289,6 +393506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371367,6 +393587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371386,6 +393609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371437,6 +393663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371456,6 +393685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371534,6 +393766,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371553,6 +393788,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371604,6 +393842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371623,6 +393864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371701,6 +393945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371720,6 +393967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371771,6 +394021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371790,6 +394043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371868,6 +394124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371887,6 +394146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -371938,6 +394200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -371957,6 +394222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372035,6 +394303,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372054,6 +394325,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372105,6 +394379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372124,6 +394401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372202,6 +394482,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372221,6 +394504,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372272,6 +394558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372291,6 +394580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372369,6 +394661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372388,6 +394683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372439,6 +394737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372458,6 +394759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372536,6 +394840,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372555,6 +394862,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372606,6 +394916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372625,6 +394938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372703,6 +395019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372722,6 +395041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372773,6 +395095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372792,6 +395117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372870,6 +395198,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372889,6 +395220,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -372940,6 +395274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -372959,6 +395296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -373037,6 +395377,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -373056,6 +395399,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -373107,6 +395453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -373126,6 +395475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -373204,6 +395556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -373223,6 +395578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -373274,6 +395632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -373293,6 +395654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -373371,6 +395735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -373390,6 +395757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -373441,6 +395811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -373460,6 +395833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -374520,6 +396896,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &581280671 GameObject: m_ObjectHideFlags: 0 @@ -375470,6 +397859,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: "40\u6570\u636E" @@ -375503,6 +397898,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -375541,6 +397937,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -376304,6 +398701,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -376497,6 +398895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -376516,6 +398917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -376566,6 +398970,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -376585,6 +398992,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -376674,6 +399084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -376693,6 +399106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -376744,6 +399160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -376763,6 +399182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -376841,6 +399263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -376860,6 +399285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -376911,6 +399339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -376930,6 +399361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377008,6 +399442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377027,6 +399464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377078,6 +399518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377097,6 +399540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377175,6 +399621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377194,6 +399643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377245,6 +399697,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377264,6 +399719,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377342,6 +399800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377361,6 +399822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377412,6 +399876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377431,6 +399898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377509,6 +399979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377528,6 +400001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377579,6 +400055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377598,6 +400077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377676,6 +400158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377695,6 +400180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377746,6 +400234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377765,6 +400256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377843,6 +400337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377862,6 +400359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -377913,6 +400413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -377932,6 +400435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378010,6 +400516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378029,6 +400538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378080,6 +400592,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378099,6 +400614,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378177,6 +400695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378196,6 +400717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378247,6 +400771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378266,6 +400793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378344,6 +400874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378363,6 +400896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378414,6 +400950,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378433,6 +400972,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378511,6 +401053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378530,6 +401075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378581,6 +401129,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378600,6 +401151,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378678,6 +401232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378697,6 +401254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378748,6 +401308,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378767,6 +401330,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378845,6 +401411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378864,6 +401433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -378915,6 +401487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -378934,6 +401509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379012,6 +401590,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379031,6 +401612,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379082,6 +401666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379101,6 +401688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379179,6 +401769,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379198,6 +401791,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379249,6 +401845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379268,6 +401867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379346,6 +401948,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379365,6 +401970,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379416,6 +402024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379435,6 +402046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379513,6 +402127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379532,6 +402149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379583,6 +402203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379602,6 +402225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379680,6 +402306,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379699,6 +402328,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379750,6 +402382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379769,6 +402404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379847,6 +402485,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379866,6 +402507,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -379917,6 +402561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -379936,6 +402583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380014,6 +402664,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380033,6 +402686,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380084,6 +402740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380103,6 +402762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380181,6 +402843,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380200,6 +402865,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380251,6 +402919,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380270,6 +402941,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380348,6 +403022,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380367,6 +403044,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380418,6 +403098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380437,6 +403120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380515,6 +403201,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380534,6 +403223,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380585,6 +403277,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380604,6 +403299,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380682,6 +403380,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380701,6 +403402,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380752,6 +403456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380771,6 +403478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380849,6 +403559,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380868,6 +403581,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -380919,6 +403635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -380938,6 +403657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381016,6 +403738,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381035,6 +403760,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381086,6 +403814,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381105,6 +403836,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381183,6 +403917,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381202,6 +403939,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381253,6 +403993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381272,6 +404015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381350,6 +404096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381369,6 +404118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381420,6 +404172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381439,6 +404194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381517,6 +404275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381536,6 +404297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381587,6 +404351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381606,6 +404373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381684,6 +404454,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381703,6 +404476,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381754,6 +404530,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381773,6 +404552,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381851,6 +404633,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381870,6 +404655,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -381921,6 +404709,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -381940,6 +404731,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382018,6 +404812,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382037,6 +404834,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382088,6 +404888,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382107,6 +404910,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382185,6 +404991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382204,6 +405013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382255,6 +405067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382274,6 +405089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382352,6 +405170,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382371,6 +405192,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382422,6 +405246,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382441,6 +405268,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382519,6 +405349,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382538,6 +405371,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382589,6 +405425,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382608,6 +405447,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382686,6 +405528,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382705,6 +405550,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382756,6 +405604,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382775,6 +405626,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382853,6 +405707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382872,6 +405729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -382923,6 +405783,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -382942,6 +405805,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -383020,6 +405886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -383039,6 +405908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -383090,6 +405962,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -383109,6 +405984,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -383187,6 +406065,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -383206,6 +406087,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -383257,6 +406141,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -383276,6 +406163,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -385868,6 +408758,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &604630063 MonoBehaviour: m_ObjectHideFlags: 0 @@ -386232,6 +409234,248 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 606423310} m_CullTransparentMesh: 0 +--- !u!1 &607091242 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 607091243} + - component: {fileID: 607091247} + - component: {fileID: 607091246} + - component: {fileID: 607091245} + - component: {fileID: 607091244} + m_Layer: 5 + m_Name: btn_CandlestickChart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &607091243 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 607091242} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1162038946} + - {fileID: 708248354} + m_Father: {fileID: 1984073382} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &607091244 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 607091242} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0b148fe25e99eb48b9724523833bab1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &607091245 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 607091242} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_SelectedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 607091246} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &607091246 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 607091242} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &607091247 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 607091242} + m_CullTransparentMesh: 0 --- !u!1 &607153420 GameObject: m_ObjectHideFlags: 0 @@ -386530,6 +409774,162 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 607605202} m_CullTransparentMesh: 0 +--- !u!1 &607839954 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 607839955} + - component: {fileID: 607839957} + - component: {fileID: 607839956} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &607839955 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 607839954} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 850711253} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &607839956 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 607839954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &607839957 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 607839954} + m_CullTransparentMesh: 0 +--- !u!1 &608659637 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 608659638} + - component: {fileID: 608659640} + - component: {fileID: 608659639} + m_Layer: 0 + m_Name: axis_x11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &608659638 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608659637} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 264878278} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 363.6, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &608659639 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608659637} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x2 +--- !u!222 &608659640 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608659637} + m_CullTransparentMesh: 0 --- !u!1 &609369703 GameObject: m_ObjectHideFlags: 1 @@ -386911,6 +410311,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &610439084 GameObject: m_ObjectHideFlags: 1 @@ -387885,6 +411298,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 612992007} m_CullTransparentMesh: 0 +--- !u!1 &613022164 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 613022165} + - component: {fileID: 613022167} + - component: {fileID: 613022166} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &613022165 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 613022164} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 178696222} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 24} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &613022166 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 613022164} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 24 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Base Candlestick +--- !u!222 &613022167 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 613022164} + m_CullTransparentMesh: 0 --- !u!1 &613180782 GameObject: m_ObjectHideFlags: 0 @@ -388102,6 +411593,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 613645424} m_CullTransparentMesh: 0 +--- !u!1 &614413558 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 614413559} + - component: {fileID: 614413561} + - component: {fileID: 614413560} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &614413559 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 614413558} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 505434491} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &614413560 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 614413558} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &614413561 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 614413558} + m_CullTransparentMesh: 0 --- !u!1 &614528989 GameObject: m_ObjectHideFlags: 1 @@ -390866,6 +414435,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Border @@ -390899,6 +414474,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -390937,6 +414513,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -391164,6 +414741,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -391357,6 +414935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -391376,6 +414957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 2734686208 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.81 m_TooltipFormatter: m_NumericFormatter: @@ -391426,6 +415010,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -391445,6 +415032,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -391534,6 +415124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -391553,6 +415146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -391604,6 +415200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -391623,6 +415222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -391701,6 +415303,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -391720,6 +415325,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -391771,6 +415379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -391790,6 +415401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -391868,6 +415482,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -391887,6 +415504,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -391938,6 +415558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -391957,6 +415580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -392315,6 +415941,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: X Value Axis @@ -392348,6 +415980,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -392386,6 +416019,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -393121,6 +416755,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -393314,6 +416949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -393333,6 +416971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -393383,6 +417024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -393402,6 +417046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -393491,6 +417138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -393510,6 +417160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -393561,6 +417214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -393580,6 +417236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -393658,6 +417317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -393677,6 +417339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -393728,6 +417393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -393747,6 +417415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -393825,6 +417496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -393844,6 +417518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -393895,6 +417572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -393914,6 +417594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -393992,6 +417675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394011,6 +417697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394062,6 +417751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394081,6 +417773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394159,6 +417854,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394178,6 +417876,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394229,6 +417930,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394248,6 +417952,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394326,6 +418033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394345,6 +418055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394396,6 +418109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394415,6 +418131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394493,6 +418212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394512,6 +418234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394563,6 +418288,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394582,6 +418310,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394679,6 +418410,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -394872,6 +418604,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394891,6 +418626,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -394941,6 +418679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -394960,6 +418701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395049,6 +418793,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395068,6 +418815,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395119,6 +418869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395138,6 +418891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395216,6 +418972,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395235,6 +418994,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395286,6 +419048,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395305,6 +419070,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395383,6 +419151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395402,6 +419173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395453,6 +419227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395472,6 +419249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395550,6 +419330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395569,6 +419352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395620,6 +419406,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395639,6 +419428,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395717,6 +419509,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395736,6 +419531,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395787,6 +419585,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395806,6 +419607,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395884,6 +419688,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395903,6 +419710,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -395954,6 +419764,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -395973,6 +419786,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -396051,6 +419867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -396070,6 +419889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -396121,6 +419943,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -396140,6 +419965,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -396776,6 +420604,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 0 m_PieSelectedOffset: 0 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &629145174 GameObject: m_ObjectHideFlags: 0 @@ -397971,6 +421812,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 635149267} m_CullTransparentMesh: 0 +--- !u!1 &635823335 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 635823336} + m_Layer: 0 + m_Name: datazoom1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &635823336 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 635823335} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1348602453} + - {fileID: 524500575} + m_Father: {fileID: 651764999} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &635842207 GameObject: m_ObjectHideFlags: 1 @@ -398668,6 +422546,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Nightinggaleros @@ -398701,6 +422585,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 1 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 1 m_Location: @@ -398739,6 +422624,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -398966,6 +422852,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -399159,6 +423046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399178,6 +423068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399228,6 +423121,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399247,6 +423143,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399336,6 +423235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399355,6 +423257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399406,6 +423311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399425,6 +423333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399503,6 +423414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399522,6 +423436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399573,6 +423490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399592,6 +423512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399670,6 +423593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399689,6 +423615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399740,6 +423669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399759,6 +423691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399837,6 +423772,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399856,6 +423794,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -399907,6 +423848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -399926,6 +423870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400004,6 +423951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400023,6 +423973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400074,6 +424027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400093,6 +424049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400171,6 +424130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400190,6 +424152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400241,6 +424206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400260,6 +424228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400338,6 +424309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400357,6 +424331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400408,6 +424385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400427,6 +424407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400505,6 +424488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400524,6 +424510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400575,6 +424564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400594,6 +424586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400691,6 +424686,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -400884,6 +424880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400903,6 +424902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -400953,6 +424955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -400972,6 +424977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401061,6 +425069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401080,6 +425091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401131,6 +425145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401150,6 +425167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401228,6 +425248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401247,6 +425270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401298,6 +425324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401317,6 +425346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401395,6 +425427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401414,6 +425449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401465,6 +425503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401484,6 +425525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401562,6 +425606,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401581,6 +425628,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401632,6 +425682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401651,6 +425704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401729,6 +425785,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401748,6 +425807,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401799,6 +425861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401818,6 +425883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401896,6 +425964,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401915,6 +425986,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -401966,6 +426040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -401985,6 +426062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -402063,6 +426143,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -402082,6 +426165,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -402133,6 +426219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -402152,6 +426241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -402230,6 +426322,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -402249,6 +426344,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -402300,6 +426398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -402319,6 +426420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -402389,6 +426493,70 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &637677786 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 637677787} + - component: {fileID: 637677789} + - component: {fileID: 637677788} + m_Layer: 0 + m_Name: painter_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &637677787 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 637677786} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &637677788 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 637677786} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &637677789 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 637677786} + m_CullTransparentMesh: 0 --- !u!1 &638124026 GameObject: m_ObjectHideFlags: 1 @@ -403417,6 +427585,69 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 641978389} m_CullTransparentMesh: 0 +--- !u!1 &642070749 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 642070750} + - component: {fileID: 642070751} + m_Layer: 5 + m_Name: candlestick_chart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &642070750 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642070749} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.99996465, y: 0.99996465, z: 0.99996465} + m_Children: + - {fileID: 1070880691} + - {fileID: 1033575168} + - {fileID: 651764999} + m_Father: {fileID: 1621547891} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 872} + m_Pivot: {x: 0, y: 1} +--- !u!114 &642070751 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642070749} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 2 + m_Right: 2 + m_Top: 2 + m_Bottom: 2 + m_ChildAlignment: 0 + m_StartCorner: 0 + m_StartAxis: 0 + m_CellSize: {x: 864, y: 432} + m_Spacing: {x: 4, y: 4} + m_Constraint: 0 + m_ConstraintCount: 2 --- !u!1 &642688234 GameObject: m_ObjectHideFlags: 0 @@ -403800,6 +428031,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &642809347 GameObject: m_ObjectHideFlags: 0 @@ -405240,6 +429484,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 648968770} m_CullTransparentMesh: 0 +--- !u!1 &649722204 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 649722205} + - component: {fileID: 649722207} + - component: {fileID: 649722206} + m_Layer: 0 + m_Name: axis_y_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &649722205 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 649722204} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 247876864} + m_Father: {fileID: 344721546} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &649722206 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 649722204} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &649722207 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 649722204} + m_CullTransparentMesh: 0 --- !u!1 &650078072 GameObject: m_ObjectHideFlags: 0 @@ -405502,6 +429821,183256 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0.5, y: 1} +--- !u!1 &651764995 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 651764999} + - component: {fileID: 651764998} + - component: {fileID: 651764996} + - component: {fileID: 651764997} + m_Layer: 0 + m_Name: CandlestickChart (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &651764996 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 651764995} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b64f0bb738cc4acfa72fff2c30212b4, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_MultiComponentMode: 0 + m_DebugMode: 0 + m_EnableTextMeshPro: 0 + m_Background: + m_Show: 0 + m_Image: {fileID: 0} + m_ImageType: 1 + m_ImageColor: {r: 1, g: 1, b: 1, a: 1} + m_HideThemeBackgroundColor: 1 + m_ChartName: + m_Theme: {fileID: 868909959} + m_Settings: + m_MaxPainter: 10 + m_LineSmoothStyle: 3 + m_LineSmoothness: 2 + m_LineSegmentDistance: 3 + m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 + m_Titles: + - m_Show: 1 + m_Text: CandlestickChart + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 1 + m_SubText: + m_SubTextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 1 + m_ItemGap: 0 + m_Location: + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 5 + m_Bottom: 0 + m_Legends: + - m_Show: 0 + m_IconType: 0 + m_SelectedMode: 0 + m_Orient: 0 + m_Location: + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 35 + m_Bottom: 0 + m_ItemWidth: 25 + m_ItemHeight: 12 + m_ItemGap: 10 + m_ItemAutoColor: 1 + m_Formatter: + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 2, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_Data: [] + m_Icons: [] + m_Tooltips: + - m_Show: 1 + m_Type: 3 + m_Formatter: + m_ItemFormatter: + m_TitleFormatter: + m_FixedWidth: 0 + m_FixedHeight: 0 + m_MinWidth: 0 + m_MinHeight: 0 + m_NumericFormatter: + m_PaddingLeftRight: 5 + m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 + m_IgnoreDataDefaultContent: '-' + m_AlwayShow: 0 + m_Offset: {x: 18, y: -25} + m_BackgroundImage: {fileID: 0} + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Grids: + - m_Show: 1 + m_Left: 60 + m_Right: 30 + m_Top: 50 + m_Bottom: 70 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_XAxes: + - m_Show: 1 + m_Type: 1 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 2 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: + - 0 + - 1 + - 2 + - 3 + - 4 + - 5 + - 6 + - 7 + - 8 + - 9 + - 10 + - 11 + - 12 + - 13 + - 14 + - 15 + - 16 + - 17 + - 18 + - 19 + - 20 + - 21 + - 22 + - 23 + - 24 + - 25 + - 26 + - 27 + - 28 + - 29 + - 30 + - 31 + - 32 + - 33 + - 34 + - 35 + - 36 + - 37 + - 38 + - 39 + - 40 + - 41 + - 42 + - 43 + - 44 + - 45 + - 46 + - 47 + - 48 + - 49 + - 50 + - 51 + - 52 + - 53 + - 54 + - 55 + - 56 + - 57 + - 58 + - 59 + - 60 + - 61 + - 62 + - 63 + - 64 + - 65 + - 66 + - 67 + - 68 + - 69 + - 70 + - 71 + - 72 + - 73 + - 74 + - 75 + - 76 + - 77 + - 78 + - 79 + - 80 + - 81 + - 82 + - 83 + - 84 + - 85 + - 86 + - 87 + - 88 + - 89 + - 90 + - 91 + - 92 + - 93 + - 94 + - 95 + - 96 + - 97 + - 98 + - 99 + - 100 + - 101 + - 102 + - 103 + - 104 + - 105 + - 106 + - 107 + - 108 + - 109 + - 110 + - 111 + - 112 + - 113 + - 114 + - 115 + - 116 + - 117 + - 118 + - 119 + - 120 + - 121 + - 122 + - 123 + - 124 + - 125 + - 126 + - 127 + - 128 + - 129 + - 130 + - 131 + - 132 + - 133 + - 134 + - 135 + - 136 + - 137 + - 138 + - 139 + - 140 + - 141 + - 142 + - 143 + - 144 + - 145 + - 146 + - 147 + - 148 + - 149 + - 150 + - 151 + - 152 + - 153 + - 154 + - 155 + - 156 + - 157 + - 158 + - 159 + - 160 + - 161 + - 162 + - 163 + - 164 + - 165 + - 166 + - 167 + - 168 + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 179 + - 180 + - 181 + - 182 + - 183 + - 184 + - 185 + - 186 + - 187 + - 188 + - 189 + - 190 + - 191 + - 192 + - 193 + - 194 + - 195 + - 196 + - 197 + - 198 + - 199 + - 200 + - 201 + - 202 + - 203 + - 204 + - 205 + - 206 + - 207 + - 208 + - 209 + - 210 + - 211 + - 212 + - 213 + - 214 + - 215 + - 216 + - 217 + - 218 + - 219 + - 220 + - 221 + - 222 + - 223 + - 224 + - 225 + - 226 + - 227 + - 228 + - 229 + - 230 + - 231 + - 232 + - 233 + - 234 + - 235 + - 236 + - 237 + - 238 + - 239 + - 240 + - 241 + - 242 + - 243 + - 244 + - 245 + - 246 + - 247 + - 248 + - 249 + - 250 + - 251 + - 252 + - 253 + - 254 + - 255 + - 256 + - 257 + - 258 + - 259 + - 260 + - 261 + - 262 + - 263 + - 264 + - 265 + - 266 + - 267 + - 268 + - 269 + - 270 + - 271 + - 272 + - 273 + - 274 + - 275 + - 276 + - 277 + - 278 + - 279 + - 280 + - 281 + - 282 + - 283 + - 284 + - 285 + - 286 + - 287 + - 288 + - 289 + - 290 + - 291 + - 292 + - 293 + - 294 + - 295 + - 296 + - 297 + - 298 + - 299 + - 300 + - 301 + - 302 + - 303 + - 304 + - 305 + - 306 + - 307 + - 308 + - 309 + - 310 + - 311 + - 312 + - 313 + - 314 + - 315 + - 316 + - 317 + - 318 + - 319 + - 320 + - 321 + - 322 + - 323 + - 324 + - 325 + - 326 + - 327 + - 328 + - 329 + - 330 + - 331 + - 332 + - 333 + - 334 + - 335 + - 336 + - 337 + - 338 + - 339 + - 340 + - 341 + - 342 + - 343 + - 344 + - 345 + - 346 + - 347 + - 348 + - 349 + - 350 + - 351 + - 352 + - 353 + - 354 + - 355 + - 356 + - 357 + - 358 + - 359 + - 360 + - 361 + - 362 + - 363 + - 364 + - 365 + - 366 + - 367 + - 368 + - 369 + - 370 + - 371 + - 372 + - 373 + - 374 + - 375 + - 376 + - 377 + - 378 + - 379 + - 380 + - 381 + - 382 + - 383 + - 384 + - 385 + - 386 + - 387 + - 388 + - 389 + - 390 + - 391 + - 392 + - 393 + - 394 + - 395 + - 396 + - 397 + - 398 + - 399 + - 400 + - 401 + - 402 + - 403 + - 404 + - 405 + - 406 + - 407 + - 408 + - 409 + - 410 + - 411 + - 412 + - 413 + - 414 + - 415 + - 416 + - 417 + - 418 + - 419 + - 420 + - 421 + - 422 + - 423 + - 424 + - 425 + - 426 + - 427 + - 428 + - 429 + - 430 + - 431 + - 432 + - 433 + - 434 + - 435 + - 436 + - 437 + - 438 + - 439 + - 440 + - 441 + - 442 + - 443 + - 444 + - 445 + - 446 + - 447 + - 448 + - 449 + - 450 + - 451 + - 452 + - 453 + - 454 + - 455 + - 456 + - 457 + - 458 + - 459 + - 460 + - 461 + - 462 + - 463 + - 464 + - 465 + - 466 + - 467 + - 468 + - 469 + - 470 + - 471 + - 472 + - 473 + - 474 + - 475 + - 476 + - 477 + - 478 + - 479 + - 480 + - 481 + - 482 + - 483 + - 484 + - 485 + - 486 + - 487 + - 488 + - 489 + - 490 + - 491 + - 492 + - 493 + - 494 + - 495 + - 496 + - 497 + - 498 + - 499 + - 500 + - 501 + - 502 + - 503 + - 504 + - 505 + - 506 + - 507 + - 508 + - 509 + - 510 + - 511 + - 512 + - 513 + - 514 + - 515 + - 516 + - 517 + - 518 + - 519 + - 520 + - 521 + - 522 + - 523 + - 524 + - 525 + - 526 + - 527 + - 528 + - 529 + - 530 + - 531 + - 532 + - 533 + - 534 + - 535 + - 536 + - 537 + - 538 + - 539 + - 540 + - 541 + - 542 + - 543 + - 544 + - 545 + - 546 + - 547 + - 548 + - 549 + - 550 + - 551 + - 552 + - 553 + - 554 + - 555 + - 556 + - 557 + - 558 + - 559 + - 560 + - 561 + - 562 + - 563 + - 564 + - 565 + - 566 + - 567 + - 568 + - 569 + - 570 + - 571 + - 572 + - 573 + - 574 + - 575 + - 576 + - 577 + - 578 + - 579 + - 580 + - 581 + - 582 + - 583 + - 584 + - 585 + - 586 + - 587 + - 588 + - 589 + - 590 + - 591 + - 592 + - 593 + - 594 + - 595 + - 596 + - 597 + - 598 + - 599 + - 600 + - 601 + - 602 + - 603 + - 604 + - 605 + - 606 + - 607 + - 608 + - 609 + - 610 + - 611 + - 612 + - 613 + - 614 + - 615 + - 616 + - 617 + - 618 + - 619 + - 620 + - 621 + - 622 + - 623 + - 624 + - 625 + - 626 + - 627 + - 628 + - 629 + - 630 + - 631 + - 632 + - 633 + - 634 + - 635 + - 636 + - 637 + - 638 + - 639 + - 640 + - 641 + - 642 + - 643 + - 644 + - 645 + - 646 + - 647 + - 648 + - 649 + - 650 + - 651 + - 652 + - 653 + - 654 + - 655 + - 656 + - 657 + - 658 + - 659 + - 660 + - 661 + - 662 + - 663 + - 664 + - 665 + - 666 + - 667 + - 668 + - 669 + - 670 + - 671 + - 672 + - 673 + - 674 + - 675 + - 676 + - 677 + - 678 + - 679 + - 680 + - 681 + - 682 + - 683 + - 684 + - 685 + - 686 + - 687 + - 688 + - 689 + - 690 + - 691 + - 692 + - 693 + - 694 + - 695 + - 696 + - 697 + - 698 + - 699 + - 700 + - 701 + - 702 + - 703 + - 704 + - 705 + - 706 + - 707 + - 708 + - 709 + - 710 + - 711 + - 712 + - 713 + - 714 + - 715 + - 716 + - 717 + - 718 + - 719 + - 720 + - 721 + - 722 + - 723 + - 724 + - 725 + - 726 + - 727 + - 728 + - 729 + - 730 + - 731 + - 732 + - 733 + - 734 + - 735 + - 736 + - 737 + - 738 + - 739 + - 740 + - 741 + - 742 + - 743 + - 744 + - 745 + - 746 + - 747 + - 748 + - 749 + - 750 + - 751 + - 752 + - 753 + - 754 + - 755 + - 756 + - 757 + - 758 + - 759 + - 760 + - 761 + - 762 + - 763 + - 764 + - 765 + - 766 + - 767 + - 768 + - 769 + - 770 + - 771 + - 772 + - 773 + - 774 + - 775 + - 776 + - 777 + - 778 + - 779 + - 780 + - 781 + - 782 + - 783 + - 784 + - 785 + - 786 + - 787 + - 788 + - 789 + - 790 + - 791 + - 792 + - 793 + - 794 + - 795 + - 796 + - 797 + - 798 + - 799 + - 800 + - 801 + - 802 + - 803 + - 804 + - 805 + - 806 + - 807 + - 808 + - 809 + - 810 + - 811 + - 812 + - 813 + - 814 + - 815 + - 816 + - 817 + - 818 + - 819 + - 820 + - 821 + - 822 + - 823 + - 824 + - 825 + - 826 + - 827 + - 828 + - 829 + - 830 + - 831 + - 832 + - 833 + - 834 + - 835 + - 836 + - 837 + - 838 + - 839 + - 840 + - 841 + - 842 + - 843 + - 844 + - 845 + - 846 + - 847 + - 848 + - 849 + - 850 + - 851 + - 852 + - 853 + - 854 + - 855 + - 856 + - 857 + - 858 + - 859 + - 860 + - 861 + - 862 + - 863 + - 864 + - 865 + - 866 + - 867 + - 868 + - 869 + - 870 + - 871 + - 872 + - 873 + - 874 + - 875 + - 876 + - 877 + - 878 + - 879 + - 880 + - 881 + - 882 + - 883 + - 884 + - 885 + - 886 + - 887 + - 888 + - 889 + - 890 + - 891 + - 892 + - 893 + - 894 + - 895 + - 896 + - 897 + - 898 + - 899 + - 900 + - 901 + - 902 + - 903 + - 904 + - 905 + - 906 + - 907 + - 908 + - 909 + - 910 + - 911 + - 912 + - 913 + - 914 + - 915 + - 916 + - 917 + - 918 + - 919 + - 920 + - 921 + - 922 + - 923 + - 924 + - 925 + - 926 + - 927 + - 928 + - 929 + - 930 + - 931 + - 932 + - 933 + - 934 + - 935 + - 936 + - 937 + - 938 + - 939 + - 940 + - 941 + - 942 + - 943 + - 944 + - 945 + - 946 + - 947 + - 948 + - 949 + - 950 + - 951 + - 952 + - 953 + - 954 + - 955 + - 956 + - 957 + - 958 + - 959 + - 960 + - 961 + - 962 + - 963 + - 964 + - 965 + - 966 + - 967 + - 968 + - 969 + - 970 + - 971 + - 972 + - 973 + - 974 + - 975 + - 976 + - 977 + - 978 + - 979 + - 980 + - 981 + - 982 + - 983 + - 984 + - 985 + - 986 + - 987 + - 988 + - 989 + - 990 + - 991 + - 992 + - 993 + - 994 + - 995 + - 996 + - 997 + - 998 + - 999 + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 0 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + - m_Show: 0 + m_Type: 1 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 3 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 0 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + m_YAxes: + - m_Show: 1 + m_Type: 0 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 0 + m_Offset: 0 + m_Min: 8000 + m_Max: 20000 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + - m_Show: 0 + m_Type: 0 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 1 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + m_DataZooms: + - m_Enable: 1 + m_FilterMode: 3 + m_XAxisIndexs: 00000000 + m_YAxisIndexs: + m_SupportInside: 1 + m_SupportSlider: 1 + m_SupportSelect: 0 + m_ShowDataShadow: 1 + m_ShowDetail: 0 + m_ZoomLock: 0 + m_Realtime: 0 + m_FillerColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderWidth: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_Left: 60 + m_Right: 30 + m_Top: 0.9 + m_Bottom: 10 + m_RangeMode: 0 + m_Start: 30 + m_End: 70 + m_StartValue: 0 + m_EndValue: 0 + m_MinShowNum: 1 + m_ScrollSensitivity: 10 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 0.3 + m_AreaStyle: + m_Show: 1 + m_Origin: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_Opacity: 0.3 + m_TooltipHighlight: 0 + m_HighlightColor: + serializedVersion: 2 + rgba: 0 + m_HighlightToColor: + serializedVersion: 2 + rgba: 0 + m_VisualMaps: + - m_Enable: 0 + m_Show: 1 + m_Type: 0 + m_Direction: 0 + m_SelectedMode: 0 + m_Min: 0 + m_Max: 100 + m_Range: + - 0 + - 100 + m_Text: + - + - + m_TextGap: + - 10 + - 10 + m_SplitNumber: 5 + m_Calculable: 0 + m_Realtime: 1 + m_ItemWidth: 20 + m_ItemHeight: 140 + m_BorderWidth: 0 + m_Dimension: -1 + m_HoverLink: 1 + m_AutoMinMax: 1 + m_Orient: 0 + m_Location: + m_Align: 7 + m_Left: 5 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_InRange: [] + m_OutOfRange: [] + m_Vessels: [] + m_Polars: [] + m_RadiusAxes: [] + m_AngleAxes: [] + m_Radars: [] + m_Series: + m_Series: + - m_Show: 1 + m_Type: 10 + m_Name: serie1 + m_Stack: + m_XAxisIndex: 0 + m_YAxisIndex: 0 + m_RadarIndex: 0 + m_VesselIndex: 0 + m_PolarIndex: 0 + m_MinShow: 0 + m_MaxShow: 0 + m_MaxCache: 0 + m_AreaStyle: + m_Show: 0 + m_Origin: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_Opacity: 0.6 + m_TooltipHighlight: 0 + m_HighlightColor: + serializedVersion: 2 + rgba: 0 + m_HighlightToColor: + serializedVersion: 2 + rgba: 0 + m_Symbol: + m_Show: 0 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 0 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_BarType: 0 + m_BarPercentStack: 0 + m_BarWidth: 0.6 + m_BarGap: 0.3 + m_BarCategoryGap: 0.2 + m_BarZebraWidth: 4 + m_BarZebraGap: 2 + m_Min: 0 + m_Max: 0 + m_StartAngle: 0 + m_EndAngle: 0 + m_MinAngle: 0 + m_Clockwise: 1 + m_RoundCap: 0 + m_RingGap: 10 + m_SplitNumber: 0 + m_GaugeType: 0 + m_GaugeAxis: + m_Show: 1 + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_BarColor: + serializedVersion: 2 + rgba: 0 + m_BarBackgroundColor: + serializedVersion: 2 + rgba: 4291348680 + m_StageColor: + - m_Percent: 0.2 + m_Color: + serializedVersion: 2 + rgba: 4289644433 + - m_Percent: 0.8 + m_Color: + serializedVersion: 2 + rgba: 4288579171 + - m_Percent: 1 + m_Color: + serializedVersion: 2 + rgba: 4281415106 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_SplitNumber: 5 + m_AxisLabel: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisLabelText: [] + runtimeStageAngle: [] + runtimeLabelPosition: [] + m_GaugePointer: + m_Show: 1 + m_Length: 0.8 + m_Width: 15 + m_ClickOffset: 1 + m_RoseType: 0 + m_Space: 0 + m_Center: + - 0.5 + - 0.45 + m_Radius: + - 0 + - 80 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_Animation: + m_Enable: 1 + m_Easting: 0 + m_Threshold: 2000 + m_FadeInDuration: 1000 + m_FadeInDelay: 0 + m_FadeOutDuration: 1000 + m_FadeOutDelay: 0 + m_DataChangeEnable: 1 + m_DataChangeDuration: 500 + m_ActualDuration: 0 + m_CurrDetailProgress: 0 + m_DestDetailProgress: 1 + m_LineArrow: + m_Show: 0 + m_Position: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_TitleStyle: + m_Show: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ShowDataDimension: 4 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Clip: 0 + m_Ignore: 0 + m_IgnoreValue: 0 + m_ShowAsPositiveNumber: 0 + m_Large: 1 + m_LargeThreshold: 200 + m_AvoidLabelOverlap: 0 + m_WaveHeight: 10 + m_WaveLength: 20 + m_WaveSpeed: 5 + m_WaveOffset: 0 + m_RadarType: 0 + m_Data: + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7411.0557 + - 7405.731 + - 7404.9263 + - 7411.0557 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7419.499 + - 7417.2544 + - 7415.267 + - 7424.698 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7429.778 + - 7428.5366 + - 7428.5366 + - 7438.0576 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7421.9717 + - 7424.451 + - 7421.969 + - 7425.484 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7420.3496 + - 7422.127 + - 7419.438 + - 7424.034 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7430.976 + - 7436.463 + - 7430.976 + - 7438.8936 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7439.4233 + - 7439.2656 + - 7439.2656 + - 7450.318 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7446.228 + - 7453.5093 + - 7446.228 + - 7454.926 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7444.565 + - 7445.849 + - 7443.852 + - 7447.106 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7457.1733 + - 7452.895 + - 7452.895 + - 7457.1733 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7455.0957 + - 7464.185 + - 7455.0957 + - 7465.178 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7451.0635 + - 7453.508 + - 7449.0312 + - 7457.605 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7453.16 + - 7448.593 + - 7448.346 + - 7456.391 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7452.571 + - 7453.0356 + - 7442.4497 + - 7453.0356 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7447.8384 + - 7445.846 + - 7445.846 + - 7450.511 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7458.8657 + - 7459.8003 + - 7455.105 + - 7462.709 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7476.207 + - 7471.291 + - 7470.323 + - 7477.2607 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7489.1 + - 7494.1943 + - 7486.5786 + - 7494.1943 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7508.437 + - 7503.2944 + - 7503.2944 + - 7509.1465 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7531.7812 + - 7528.849 + - 7521.424 + - 7531.7812 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7528.3853 + - 7532.883 + - 7528.3853 + - 7535.4414 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7521.8564 + - 7520.376 + - 7520.376 + - 7527.009 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7520.5684 + - 7519.985 + - 7519.985 + - 7529.395 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7518.9087 + - 7513.9233 + - 7513.9233 + - 7520.617 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7503.8438 + - 7504.183 + - 7503.8438 + - 7513.5967 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7514.733 + - 7516.727 + - 7514.733 + - 7521.383 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7521.561 + - 7516.576 + - 7513.2305 + - 7523.7407 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7517.533 + - 7520.5176 + - 7517.533 + - 7523.0215 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7530.5146 + - 7529.996 + - 7523.6187 + - 7530.5146 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7532.249 + - 7536.766 + - 7532.249 + - 7540.224 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7533.5254 + - 7532.6396 + - 7529.5024 + - 7538.16 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7527.04 + - 7529.7104 + - 7525.4404 + - 7530.868 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7521.516 + - 7530.6714 + - 7521.516 + - 7531.0073 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7535.6353 + - 7530.5 + - 7530.5 + - 7538.905 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7533.2866 + - 7533.6646 + - 7531.7686 + - 7535.8125 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7539.109 + - 7543.6416 + - 7538.867 + - 7543.8154 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7539.2393 + - 7537.114 + - 7532.0894 + - 7539.4097 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7536.2935 + - 7527.6006 + - 7527.6006 + - 7537.3315 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7529.415 + - 7529.604 + - 7529.415 + - 7534.7217 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7542.275 + - 7541.0293 + - 7540.9272 + - 7542.275 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7559.138 + - 7559.661 + - 7550.66 + - 7560.3774 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7563.4355 + - 7560.8613 + - 7560.8613 + - 7566.1587 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7567.8794 + - 7567.6865 + - 7566.079 + - 7569.8804 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7571.7705 + - 7568.3027 + - 7566.673 + - 7575.0356 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7574.0845 + - 7567.191 + - 7567.191 + - 7577.9937 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7567.28 + - 7568.9067 + - 7567.28 + - 7573.9976 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7587.5703 + - 7582.747 + - 7582.747 + - 7589.6685 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7602.5366 + - 7603.6675 + - 7598.617 + - 7603.6675 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7593.492 + - 7592.6553 + - 7589.48 + - 7594.727 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7593.9434 + - 7596.473 + - 7593.9434 + - 7598.1978 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7614.8047 + - 7615.3374 + - 7608.841 + - 7617.8613 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7603.7183 + - 7609.8374 + - 7603.3223 + - 7610.6206 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7630.261 + - 7622.959 + - 7622.959 + - 7630.9443 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7629.2915 + - 7631.424 + - 7629.2915 + - 7635.681 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7635.065 + - 7635.3984 + - 7632.071 + - 7642.3667 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7655.645 + - 7659.7515 + - 7654.04 + - 7659.7515 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7652.561 + - 7652.406 + - 7652.145 + - 7662.2163 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7644.9927 + - 7648.9956 + - 7644.908 + - 7650.6333 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7643.627 + - 7639.863 + - 7638.1904 + - 7643.627 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7647.3994 + - 7647.5723 + - 7647.3994 + - 7650.16 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7659.5303 + - 7663.2354 + - 7656.341 + - 7664.962 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7666.4907 + - 7661.3535 + - 7661.3535 + - 7666.4907 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7658.661 + - 7657.7764 + - 7657.7764 + - 7667.71 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7654.4404 + - 7648.746 + - 7648.746 + - 7659.0063 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7645.241 + - 7646.1514 + - 7645.241 + - 7653.333 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7662.7983 + - 7665.7656 + - 7662.2544 + - 7669.34 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7679.042 + - 7676.404 + - 7672.727 + - 7680.0176 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7685.2363 + - 7684.0728 + - 7680.3076 + - 7685.2363 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7670.0093 + - 7674.1113 + - 7670.0093 + - 7680.427 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7676.8154 + - 7674.315 + - 7674.315 + - 7677.5234 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7670.592 + - 7670.6494 + - 7670.592 + - 7674.183 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7661.718 + - 7661.8345 + - 7661.425 + - 7662.555 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7668.7144 + - 7669.1265 + - 7664.8223 + - 7670.7637 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7667.687 + - 7658.1094 + - 7658.1094 + - 7667.687 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7667.2627 + - 7668.6826 + - 7664.5337 + - 7670.895 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7663.058 + - 7665.6606 + - 7663.058 + - 7667.476 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7679.2812 + - 7674.627 + - 7668.7354 + - 7679.2812 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7673.321 + - 7672.55 + - 7672.55 + - 7673.6406 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7683.6074 + - 7680.02 + - 7680.02 + - 7686.027 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7705.3105 + - 7704.266 + - 7703.2114 + - 7707.6953 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7718.8174 + - 7721.791 + - 7714.776 + - 7721.791 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7734.7314 + - 7739.971 + - 7734.7314 + - 7741.2896 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7728.491 + - 7732.273 + - 7728.491 + - 7735.9126 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7728.4614 + - 7737.441 + - 7728.4614 + - 7737.4946 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7722.6606 + - 7719.165 + - 7719.165 + - 7730.649 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7739.492 + - 7745.817 + - 7738.4688 + - 7747.121 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7750.4663 + - 7743.0938 + - 7743.0938 + - 7752.404 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7745.3965 + - 7746.595 + - 7739.8745 + - 7748.136 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7730.8115 + - 7732.7915 + - 7730.8115 + - 7736.464 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7750.372 + - 7750.7817 + - 7750.372 + - 7752.602 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7763.0557 + - 7765.4917 + - 7760.0635 + - 7767.3057 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7776.0186 + - 7774.7925 + - 7768.977 + - 7776.0186 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7770.2495 + - 7774.8696 + - 7768.017 + - 7777.3433 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7770.677 + - 7769.872 + - 7766.714 + - 7770.677 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7774.603 + - 7769.872 + - 7769.872 + - 7776.8657 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7766.755 + - 7771.803 + - 7766.755 + - 7776.4478 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7781.3823 + - 7778.4893 + - 7778.4893 + - 7782.486 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7781.877 + - 7772.877 + - 7772.877 + - 7782.6772 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7787.5376 + - 7786.082 + - 7775.729 + - 7787.5376 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7784.036 + - 7780.3184 + - 7780.3184 + - 7786.4873 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7790.2266 + - 7790.934 + - 7783.2383 + - 7790.934 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7785.7437 + - 7785.007 + - 7774.0205 + - 7785.7437 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7799.392 + - 7794.774 + - 7794.135 + - 7799.392 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7790.3813 + - 7796.89 + - 7788.585 + - 7797.4355 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7801.21 + - 7801.846 + - 7796.3086 + - 7805.6987 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7808.179 + - 7809.0557 + - 7808.179 + - 7816.382 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7834.815 + - 7835.884 + - 7829.8647 + - 7835.927 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7848.4253 + - 7850.489 + - 7847.3047 + - 7850.489 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7848.2437 + - 7845.7046 + - 7837.3726 + - 7848.2437 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7857.1333 + - 7855.71 + - 7855.71 + - 7857.1333 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7852.637 + - 7858.005 + - 7852.52 + - 7858.2446 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7859.2363 + - 7861.2607 + - 7858.2134 + - 7861.511 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7879.4863 + - 7881.441 + - 7874.3296 + - 7881.441 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7875.8877 + - 7871.103 + - 7871.103 + - 7876.7397 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7884.7905 + - 7879.0723 + - 7879.0723 + - 7884.7905 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7894.853 + - 7894.9663 + - 7893.371 + - 7899.238 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7901.837 + - 7903.344 + - 7899.127 + - 7903.344 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7905.8325 + - 7913.6807 + - 7905.487 + - 7916.3237 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7908.825 + - 7905.165 + - 7905.165 + - 7911.1597 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7910.2866 + - 7905.768 + - 7903.7085 + - 7910.2866 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7926.097 + - 7927.512 + - 7923.169 + - 7928.3574 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7935.7197 + - 7932.426 + - 7932.065 + - 7935.7197 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7935.21 + - 7936.236 + - 7935.21 + - 7937.0635 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7945.15 + - 7947.553 + - 7944.5522 + - 7949.1157 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7941.8677 + - 7942.915 + - 7941.8677 + - 7949.0103 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7945.544 + - 7943.4116 + - 7943.4116 + - 7950.773 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7969.295 + - 7967.812 + - 7967.812 + - 7970.654 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7970.177 + - 7967.9907 + - 7967.9907 + - 7972.681 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7972.3145 + - 7977.347 + - 7972.033 + - 7980.5967 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7987.408 + - 7984.307 + - 7984.307 + - 7994.5356 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 7994.5884 + - 7996.6504 + - 7989.5767 + - 8000.572 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8003.9346 + - 7998.55 + - 7998.55 + - 8003.9346 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8014.6436 + - 8016.6846 + - 8012.549 + - 8016.6846 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8020.7285 + - 8023.998 + - 8015.2935 + - 8023.998 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8040.7124 + - 8039.392 + - 8033.465 + - 8040.8984 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8047.052 + - 8051.129 + - 8042.0654 + - 8051.129 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8045.7812 + - 8048.2915 + - 8041.9375 + - 8052.0576 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8041.2593 + - 8048.364 + - 8041.2593 + - 8050.091 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8042.4834 + - 8048.6616 + - 8042.4834 + - 8049.632 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8049.213 + - 8049.1987 + - 8048.8843 + - 8051.4434 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8061.238 + - 8063.2104 + - 8061.238 + - 8071.384 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8078.2407 + - 8077.792 + - 8076.1846 + - 8080.3774 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8091.808 + - 8094.8394 + - 8091.808 + - 8098.658 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8092.958 + - 8088.4893 + - 8087.433 + - 8092.958 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8091.328 + - 8093.008 + - 8090.338 + - 8093.336 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8084.442 + - 8083.6416 + - 8080.8535 + - 8086.007 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8084.294 + - 8082.8027 + - 8081.1797 + - 8086.8975 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8106.8545 + - 8103.1675 + - 8103.1675 + - 8108.6323 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8117.7656 + - 8119.697 + - 8116.229 + - 8119.919 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8119.9487 + - 8121.938 + - 8119.359 + - 8126.071 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8132.441 + - 8130.8716 + - 8130.8716 + - 8138.718 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8122.282 + - 8129.938 + - 8121.3975 + - 8130.44 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8132.529 + - 8130.15 + - 8129.4395 + - 8134.591 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8144.3047 + - 8143.095 + - 8138.921 + - 8144.3047 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8156.922 + - 8150.9062 + - 8150.76 + - 8156.9355 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8173.8457 + - 8165.371 + - 8165.371 + - 8173.8457 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8188.398 + - 8186.806 + - 8183.5303 + - 8191.9556 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8190.682 + - 8190.574 + - 8188.2036 + - 8192.997 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8182.65 + - 8186.9976 + - 8181.888 + - 8188.7803 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8183.8975 + - 8188.645 + - 8182.474 + - 8193.397 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8197.72 + - 8190.2104 + - 8187.2837 + - 8197.72 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8189.3916 + - 8187.8413 + - 8185.8354 + - 8189.3916 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8181.169 + - 8183.4478 + - 8181.0415 + - 8187.437 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8186.4395 + - 8189.345 + - 8180.451 + - 8190.593 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8182.94 + - 8187.689 + - 8182.94 + - 8191.7876 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8182.1177 + - 8175.0444 + - 8175.0444 + - 8182.1177 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8184.5117 + - 8185.288 + - 8180.6846 + - 8187.3267 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8185.3423 + - 8187.8604 + - 8185.3423 + - 8191.26 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8184.843 + - 8184.74 + - 8183.548 + - 8184.843 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8195.447 + - 8196.336 + - 8193.509 + - 8204.12 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8213.027 + - 8216.773 + - 8211.838 + - 8218.171 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8214.106 + - 8207.133 + - 8203.173 + - 8214.106 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8215.959 + - 8225.095 + - 8214.388 + - 8226.118 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8219.21 + - 8217.59 + - 8217.59 + - 8224.217 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8225.89 + - 8220.661 + - 8220.661 + - 8230.966 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8229.217 + - 8225.765 + - 8225.765 + - 8234.402 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8228.566 + - 8227.996 + - 8227.972 + - 8229.513 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8238.475 + - 8240.232 + - 8235.459 + - 8240.924 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8248.24 + - 8247.605 + - 8245.732 + - 8248.543 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8248.635 + - 8249.31 + - 8247.198 + - 8253.094 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8241.892 + - 8243.154 + - 8235.191 + - 8243.195 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8248.349 + - 8251.355 + - 8240.273 + - 8251.355 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8250.824 + - 8249.799 + - 8246.732 + - 8250.824 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8235.711 + - 8236.535 + - 8235.711 + - 8242.548 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8247.374 + - 8250.419 + - 8246.741 + - 8250.448 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8234.446 + - 8236.293 + - 8234.446 + - 8242.509 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8253.817 + - 8259.729 + - 8253.817 + - 8259.868 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8246.355 + - 8249.25 + - 8246.355 + - 8251.371 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8270.444 + - 8260.34 + - 8260.34 + - 8271.207 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8254.853 + - 8257.196 + - 8253.018 + - 8258.828 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8271.865 + - 8272.132 + - 8271.865 + - 8274.832 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8291.389 + - 8294.981 + - 8288.785 + - 8296.473 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8304.87 + - 8304.549 + - 8302.146 + - 8306.714 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8301.815 + - 8308.065 + - 8301.341 + - 8311.6875 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8319.482 + - 8320.5205 + - 8319.482 + - 8329.955 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8315.987 + - 8316.928 + - 8314.756 + - 8318.383 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8314.882 + - 8311.887 + - 8311.887 + - 8320.417 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8318.705 + - 8318.751 + - 8311.679 + - 8318.751 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8307.221 + - 8309.092 + - 8302.369 + - 8313.535 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8312.351 + - 8308.633 + - 8304.091 + - 8312.351 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8317.632 + - 8316.462 + - 8315.341 + - 8319.8 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8314.646 + - 8315.535 + - 8307.508 + - 8317.247 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8307.9795 + - 8302.87 + - 8301.298 + - 8311.141 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8324.527 + - 8320.203 + - 8319.952 + - 8328.041 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8338.272 + - 8336.592 + - 8330.886 + - 8338.272 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8351.048 + - 8344.294 + - 8344.294 + - 8352.91 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8364.835 + - 8365.424 + - 8361.766 + - 8365.424 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8383.872 + - 8383.084 + - 8383.084 + - 8385.129 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8394.674 + - 8393.8545 + - 8392.256 + - 8394.674 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8409.286 + - 8404.791 + - 8403.973 + - 8409.286 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8397.699 + - 8397.741 + - 8397.699 + - 8403.086 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8419.064 + - 8420.855 + - 8413.972 + - 8420.855 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8416.106 + - 8416.126 + - 8411.95 + - 8416.126 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8425.723 + - 8420.185 + - 8417.234 + - 8427.372 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8426.645 + - 8416.973 + - 8416.973 + - 8426.645 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8435.407 + - 8440.448 + - 8433.965 + - 8440.448 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8436.894 + - 8430.77 + - 8430.77 + - 8436.894 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8442.941 + - 8444.335 + - 8442.941 + - 8451.613 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8446.272 + - 8447.68 + - 8444.745 + - 8451.942 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8461.864 + - 8462.05 + - 8454.629 + - 8462.713 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8459.732 + - 8461.701 + - 8459.732 + - 8466.671 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8467.555 + - 8474.715 + - 8467.555 + - 8477.201 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8469.112 + - 8471.362 + - 8469.112 + - 8476.285 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8465.714 + - 8462.325 + - 8462.325 + - 8469.753 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8466.057 + - 8468.586 + - 8464.844 + - 8469.599 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8475.038 + - 8476.713 + - 8475.038 + - 8480.543 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8485.557 + - 8487.688 + - 8482.455 + - 8487.824 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8474.845 + - 8476.019 + - 8472.259 + - 8479.529 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8483.02 + - 8475.913 + - 8475.913 + - 8483.02 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8486.431 + - 8487.364 + - 8481.888 + - 8491.22 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8482.296 + - 8478.129 + - 8473.47 + - 8482.296 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8484.155 + - 8480.351 + - 8477.578 + - 8486.203 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8498.301 + - 8507.508 + - 8497.106 + - 8507.508 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8509.311 + - 8508.481 + - 8508.481 + - 8511.196 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8517.958 + - 8519.992 + - 8514.277 + - 8519.992 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8520.704 + - 8521.2 + - 8516.781 + - 8521.2 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8535.421 + - 8533.071 + - 8533.071 + - 8538.306 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8544.743 + - 8538.192 + - 8538.192 + - 8548.004 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8554.766 + - 8555.039 + - 8552.502 + - 8555.066 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8558.797 + - 8551.541 + - 8547.915 + - 8558.885 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8558.821 + - 8555.879 + - 8555.879 + - 8562.714 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8560.081 + - 8554.818 + - 8554.818 + - 8561.348 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8568.404 + - 8562.097 + - 8559.535 + - 8568.774 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8562.444 + - 8566.911 + - 8558.133 + - 8567.194 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8560.606 + - 8558.008 + - 8558.008 + - 8563.698 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8576.145 + - 8579.052 + - 8573.872 + - 8581.368 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8573.1455 + - 8575.137 + - 8571.179 + - 8577.922 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8592.603 + - 8582.3125 + - 8582.0205 + - 8592.603 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8584.449 + - 8589.566 + - 8584.449 + - 8592.43 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8611.575 + - 8609.547 + - 8609.547 + - 8612.4 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8607.433 + - 8606.834 + - 8601.777 + - 8608.709 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8606.959 + - 8601.202 + - 8597.693 + - 8606.959 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8598.491 + - 8598.284 + - 8595.56 + - 8599.764 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8608.691 + - 8607.421 + - 8605.273 + - 8612.016 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8616.079 + - 8621.934 + - 8616.079 + - 8627.346 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8625.144 + - 8632.248 + - 8623.448 + - 8632.38 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8626.17 + - 8625.914 + - 8615.626 + - 8626.17 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8626.39 + - 8628.144 + - 8626.39 + - 8636.697 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8645.1875 + - 8646.665 + - 8643.142 + - 8651.699 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8671.844 + - 8666.365 + - 8664.771 + - 8673.482 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8681.339 + - 8680.831 + - 8680.831 + - 8689.448 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8702.459 + - 8699.347 + - 8696.344 + - 8702.459 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8691.425 + - 8690.459 + - 8687.539 + - 8695.196 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8696.91 + - 8698.822 + - 8695.925 + - 8698.822 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8701.811 + - 8702.65 + - 8701.5 + - 8704.003 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8714.712 + - 8719.5625 + - 8714.143 + - 8722.88 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8705.8545 + - 8707.803 + - 8704.466 + - 8713.171 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8721.833 + - 8725.086 + - 8720.176 + - 8729.963 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8732.101 + - 8733.39 + - 8732.101 + - 8735.661 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8732.349 + - 8721.793 + - 8721.793 + - 8732.349 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8725.187 + - 8720.696 + - 8720.696 + - 8728.28 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8739.214 + - 8737.719 + - 8733.548 + - 8740.147 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8743.904 + - 8740.686 + - 8736.992 + - 8743.904 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8747.49 + - 8750.765 + - 8747.49 + - 8756.6875 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8765.607 + - 8768.321 + - 8761.916 + - 8771.731 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8775.523 + - 8773.452 + - 8771.337 + - 8775.523 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8786.984 + - 8790.421 + - 8786.984 + - 8795.776 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8802.816 + - 8805.891 + - 8798.622 + - 8807.557 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8820.7705 + - 8817.534 + - 8815.83 + - 8826.874 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8821.486 + - 8817.596 + - 8816.228 + - 8822.229 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8837.43 + - 8837.203 + - 8835.429 + - 8839.065 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8857.292 + - 8855.031 + - 8855.031 + - 8857.329 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8865.276 + - 8863.127 + - 8857.387 + - 8865.276 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8866.859 + - 8858.706 + - 8856.15 + - 8866.859 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8858.214 + - 8857.242 + - 8852.211 + - 8858.627 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8850.887 + - 8850.927 + - 8850.319 + - 8855.084 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8852.144 + - 8854.838 + - 8850.624 + - 8856.127 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8850.195 + - 8850.246 + - 8849.785 + - 8855.267 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8856.714 + - 8857.929 + - 8851.124 + - 8860.975 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8855.134 + - 8859.622 + - 8854.376 + - 8861.257 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8862.394 + - 8858.533 + - 8858.533 + - 8864.162 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8872.755 + - 8873.192 + - 8872.755 + - 8878.509 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8874.137 + - 8865.9 + - 8865.9 + - 8877.579 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8886.117 + - 8878.655 + - 8877.035 + - 8886.117 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8899.342 + - 8895.403 + - 8894.583 + - 8899.342 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8889.11 + - 8894.706 + - 8888.598 + - 8895.05 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8899.915 + - 8899.642 + - 8896.842 + - 8904.444 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8891.026 + - 8891.637 + - 8891.026 + - 8898.851 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8912.638 + - 8913.485 + - 8910.874 + - 8915.06 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8917.46 + - 8922.632 + - 8915.928 + - 8923.589 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8926.41 + - 8927.69 + - 8922.189 + - 8927.69 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8948.731 + - 8939.815 + - 8939.815 + - 8948.731 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8950.322 + - 8953.279 + - 8950.322 + - 8957.106 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8968.178 + - 8961.272 + - 8961.272 + - 8969.822 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8972.545 + - 8971.721 + - 8970.303 + - 8974.325 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8970.822 + - 8961.346 + - 8961.346 + - 8970.822 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8975.84 + - 8977.566 + - 8970.05 + - 8977.566 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8977.59 + - 8975.808 + - 8975.2295 + - 8982.342 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8974.757 + - 8973.163 + - 8968.616 + - 8974.757 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8989.306 + - 8986.04 + - 8985.106 + - 8990.687 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8979.337 + - 8979.544 + - 8978.975 + - 8986.846 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9003.844 + - 9002.644 + - 8993.821 + - 9003.844 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 8991.025 + - 8993.899 + - 8991.025 + - 9001.531 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9004.894 + - 9003.493 + - 9001.965 + - 9006.639 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9011.855 + - 9009.857 + - 9009.857 + - 9016.783 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9024.2705 + - 9024.824 + - 9024.2705 + - 9032.293 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9044.123 + - 9048.828 + - 9039.025 + - 9048.828 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9044.465 + - 9047.9 + - 9044.465 + - 9050.659 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9062.195 + - 9058.583 + - 9058.583 + - 9065.226 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9071.422 + - 9069.435 + - 9069.435 + - 9078.597 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9068.963 + - 9061.616 + - 9061.616 + - 9070.433 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9076.132 + - 9070.93 + - 9070.93 + - 9079.666 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9085.345 + - 9086.26 + - 9085.345 + - 9091.152 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9111.607 + - 9109.184 + - 9107.621 + - 9111.607 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9112.371 + - 9113.628 + - 9112.371 + - 9121.568 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9128.407 + - 9129.215 + - 9122.684 + - 9130.918 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9133.377 + - 9131.35 + - 9130.958 + - 9138.906 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9151.868 + - 9154.338 + - 9149.003 + - 9154.338 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9150.813 + - 9152.77 + - 9142.425 + - 9152.77 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9158.548 + - 9157.099 + - 9157.099 + - 9162.063 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9160.12 + - 9158.779 + - 9158.779 + - 9164.723 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9147.378 + - 9155.086 + - 9146.707 + - 9155.086 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9151.031 + - 9150.935 + - 9150.935 + - 9162.022 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9152.214 + - 9146.471 + - 9146.471 + - 9153.378 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9138.452 + - 9141.768 + - 9135.442 + - 9142.972 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9142.834 + - 9138.415 + - 9138.415 + - 9144.958 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9137.386 + - 9133.818 + - 9130.933 + - 9140.537 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9143.918 + - 9148.357 + - 9143.439 + - 9150.469 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9160.72 + - 9161.921 + - 9160.399 + - 9164.929 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9164.919 + - 9166.819 + - 9164.919 + - 9168.44 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9185.703 + - 9182.602 + - 9182.602 + - 9186.57 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9189.93 + - 9189.862 + - 9185.002 + - 9190.977 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9176.992 + - 9183.418 + - 9176.992 + - 9188.357 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9176.48 + - 9185.393 + - 9175.885 + - 9187.679 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9196.121 + - 9196.179 + - 9195.555 + - 9201.277 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9207.512 + - 9203.343 + - 9201.044 + - 9207.512 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9201.964 + - 9197.154 + - 9196.794 + - 9201.964 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9204.735 + - 9208.7295 + - 9200.981 + - 9211.159 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9198.097 + - 9199.087 + - 9190.069 + - 9200.143 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9202.054 + - 9203.324 + - 9202.054 + - 9203.991 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9207.3955 + - 9204.1 + - 9197.731 + - 9207.3955 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9199.392 + - 9200.281 + - 9190.122 + - 9200.281 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9210.949 + - 9205.854 + - 9205.854 + - 9215.414 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9221.4375 + - 9219.191 + - 9215.097 + - 9221.4375 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9235.429 + - 9231.947 + - 9228.721 + - 9239.507 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9237.671 + - 9241.714 + - 9237.576 + - 9245.047 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9251.329 + - 9253.737 + - 9248.721 + - 9253.984 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9265.317 + - 9257.465 + - 9256.018 + - 9265.317 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9278.575 + - 9283.367 + - 9274.162 + - 9284.733 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9303.294 + - 9295.889 + - 9295.695 + - 9303.457 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9299.498 + - 9296.628 + - 9296.628 + - 9303.498 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9296.626 + - 9296.414 + - 9294.947 + - 9296.683 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9310.658 + - 9310.742 + - 9309.785 + - 9310.987 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9317.883 + - 9318.272 + - 9313.024 + - 9320.844 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9322.241 + - 9317.802 + - 9317.573 + - 9322.241 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9319.43 + - 9315.2295 + - 9315.2295 + - 9320.427 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9328.8545 + - 9335.7295 + - 9328.8545 + - 9338.117 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9336.22 + - 9335.647 + - 9331.448 + - 9337.696 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9352.185 + - 9353.549 + - 9346.845 + - 9353.549 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9366.709 + - 9366.729 + - 9363.437 + - 9373.659 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9363.625 + - 9365.552 + - 9361.87 + - 9369.372 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9374.522 + - 9377.321 + - 9374.055 + - 9378.152 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9380.397 + - 9382.142 + - 9370.886 + - 9382.142 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9385.928 + - 9382.777 + - 9381.743 + - 9387.586 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9384.101 + - 9386.138 + - 9378.176 + - 9386.138 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9398.996 + - 9399.396 + - 9398.461 + - 9399.396 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9397.922 + - 9401.885 + - 9395.872 + - 9406.636 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9413.396 + - 9410.1045 + - 9410.1045 + - 9415.556 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9408.598 + - 9403.843 + - 9400.884 + - 9411.202 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9415.145 + - 9416.338 + - 9409.295 + - 9416.338 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9424.222 + - 9422.745 + - 9421.374 + - 9424.222 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9415.256 + - 9414.154 + - 9410.417 + - 9417.135 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9407.834 + - 9406.507 + - 9400.588 + - 9409.87 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9424.59 + - 9418.721 + - 9415.965 + - 9424.59 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9420.129 + - 9415.73 + - 9414.145 + - 9420.129 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9411.084 + - 9412.268 + - 9405.51 + - 9412.268 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9405.325 + - 9399.551 + - 9397.136 + - 9405.325 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9404.018 + - 9404.437 + - 9400.757 + - 9406.484 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9397.132 + - 9399.069 + - 9397.132 + - 9400.834 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9391.353 + - 9396.141 + - 9389.945 + - 9396.833 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9412.848 + - 9405.407 + - 9402.961 + - 9412.848 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9414.167 + - 9412.659 + - 9408.982 + - 9414.167 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9420.628 + - 9419.056 + - 9419.056 + - 9420.983 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9429.548 + - 9425.246 + - 9425.246 + - 9433.36 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9441.215 + - 9442.191 + - 9437.381 + - 9442.191 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9431.223 + - 9430.714 + - 9429.023 + - 9436.692 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9430.671 + - 9433.029 + - 9430.671 + - 9437.728 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9446.246 + - 9440.8 + - 9440.8 + - 9450.343 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9459.1045 + - 9453.118 + - 9453.117 + - 9462.231 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9472.253 + - 9466.307 + - 9466.062 + - 9475.26 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9462.294 + - 9460.321 + - 9460.321 + - 9470.346 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9482.91 + - 9471.756 + - 9471.756 + - 9482.91 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9490.227 + - 9484.086 + - 9484.086 + - 9494.023 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9503.434 + - 9503.672 + - 9498.023 + - 9506.739 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9510.72 + - 9510.189 + - 9502.607 + - 9512.161 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9503.081 + - 9506.187 + - 9501.245 + - 9510.599 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9519.963 + - 9513.62 + - 9513.62 + - 9520.585 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9534.075 + - 9533.128 + - 9526.418 + - 9534.075 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9532.816 + - 9529.87 + - 9523.551 + - 9532.816 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9517.272 + - 9520.092 + - 9517.272 + - 9528.195 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9514.997 + - 9513.171 + - 9513.171 + - 9516.7705 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9512.281 + - 9505.428 + - 9505.428 + - 9512.281 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9502.926 + - 9498.067 + - 9497.388 + - 9508.118 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9513.73 + - 9515.358 + - 9506.335 + - 9515.358 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9518.556 + - 9515.696 + - 9515.696 + - 9523.227 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9536.8 + - 9540.751 + - 9536.121 + - 9543.793 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9540.952 + - 9541.079 + - 9540.951 + - 9547.971 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9561.262 + - 9560.516 + - 9560.516 + - 9565.647 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9579.762 + - 9575.975 + - 9575.975 + - 9582.172 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9578.927 + - 9581.0205 + - 9571.874 + - 9581.0205 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9575.819 + - 9575.075 + - 9567.475 + - 9575.819 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9574.018 + - 9571.342 + - 9571.342 + - 9581.885 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9578.264 + - 9580.824 + - 9578.264 + - 9587.807 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9591.829 + - 9586.44 + - 9586.44 + - 9593.694 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9601.772 + - 9593.273 + - 9593.273 + - 9601.772 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9598.847 + - 9598.415 + - 9598.415 + - 9601.641 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9591.491 + - 9589.77 + - 9587.514 + - 9594.693 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9612.018 + - 9610.603 + - 9605.794 + - 9612.16 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9628.242 + - 9624.093 + - 9624.093 + - 9632.439 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9631.876 + - 9624.032 + - 9622.813 + - 9631.876 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9631.11 + - 9626.755 + - 9624.28 + - 9633.684 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9638.806 + - 9637.416 + - 9636.016 + - 9643.236 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9649.599 + - 9648.023 + - 9647.138 + - 9656.089 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9664.482 + - 9666.529 + - 9661.01 + - 9667.312 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9677.89 + - 9677.601 + - 9676.929 + - 9677.89 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9672.468 + - 9674.702 + - 9669.827 + - 9675.195 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9677.679 + - 9674.357 + - 9674.28 + - 9677.679 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9691.901 + - 9691.845 + - 9685.416 + - 9691.901 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9684.206 + - 9680.767 + - 9677.628 + - 9684.206 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9694.547 + - 9693.83 + - 9693.281 + - 9695.889 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9695.576 + - 9696.418 + - 9691.66 + - 9696.609 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9699.149 + - 9692.096 + - 9688.317 + - 9699.149 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9709.002 + - 9707.284 + - 9707.284 + - 9711.489 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9699.764 + - 9697.075 + - 9697.075 + - 9701.22 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9698.907 + - 9699.098 + - 9698.444 + - 9705.936 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9704.96 + - 9705.384 + - 9704.96 + - 9714.567 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9717.447 + - 9712.654 + - 9712.654 + - 9723.338 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9740.012 + - 9737.498 + - 9736.151 + - 9740.172 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9746.611 + - 9742.983 + - 9742.11 + - 9747.561 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9761.686 + - 9763.945 + - 9761.686 + - 9766.815 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9771.509 + - 9769.311 + - 9766.603 + - 9771.509 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9760.588 + - 9767.057 + - 9757.924 + - 9767.057 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9768.04 + - 9767.024 + - 9767.024 + - 9771.894 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9770.488 + - 9762.068 + - 9762.068 + - 9770.488 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9773.544 + - 9766.534 + - 9766.406 + - 9777.234 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9772.501 + - 9776.32 + - 9770.642 + - 9780.9795 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9781.356 + - 9785.287 + - 9781.356 + - 9785.585 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9791.403 + - 9791.079 + - 9791.079 + - 9792.708 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9790.892 + - 9795.528 + - 9789.053 + - 9798.447 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9810.657 + - 9812.024 + - 9806.804 + - 9812.181 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9822.465 + - 9816.452 + - 9816.452 + - 9822.477 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9831.993 + - 9832.22 + - 9831.777 + - 9837.531 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9827.629 + - 9829.956 + - 9825.842 + - 9831.294 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9826.034 + - 9827.114 + - 9824.941 + - 9827.114 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9827.035 + - 9830.033 + - 9827.035 + - 9834.435 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9843.902 + - 9838.509 + - 9838.509 + - 9844.735 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9856.576 + - 9857.128 + - 9848.868 + - 9857.128 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9860.898 + - 9864.018 + - 9854.714 + - 9864.018 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9874.212 + - 9871.048 + - 9871.048 + - 9878.94 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9862.747 + - 9862.94 + - 9862.747 + - 9868.458 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9869.797 + - 9871.56 + - 9866.565 + - 9872.877 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9888.547 + - 9885.544 + - 9880.5 + - 9888.547 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9885.864 + - 9884.903 + - 9884.014 + - 9887.884 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9899.447 + - 9896.604 + - 9894.193 + - 9901.148 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9905.979 + - 9908.371 + - 9899.314 + - 9908.984 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9910.111 + - 9910.458 + - 9909.882 + - 9914.249 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9916.74 + - 9911.796 + - 9906.191 + - 9916.74 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9921.937 + - 9925.276 + - 9919.255 + - 9926.526 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9921.327 + - 9927.352 + - 9921.327 + - 9930.089 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9928.9375 + - 9923.249 + - 9923.249 + - 9930.3125 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9929.629 + - 9939.152 + - 9929.629 + - 9939.978 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9935.8125 + - 9926.927 + - 9926.927 + - 9937.605 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9931.981 + - 9932.126 + - 9926.136 + - 9932.126 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9946.791 + - 9947.824 + - 9945.245 + - 9948.212 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9957.346 + - 9961.038 + - 9956.156 + - 9961.587 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9970.995 + - 9974.239 + - 9968.855 + - 9974.817 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9969.952 + - 9967.649 + - 9967.571 + - 9972.169 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9975.117 + - 9975.91 + - 9974.776 + - 9982.712 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9988.169 + - 9988.087 + - 9985.942 + - 9991.951 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9990.596 + - 9992.089 + - 9990.596 + - 9998.491 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9993.403 + - 9995.902 + - 9984.372 + - 9995.902 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 9993.603 + - 9995.605 + - 9992.101 + - 9996.579 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10005.478 + - 10005.582 + - 10005.048 + - 10010.682 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10009.528 + - 10009.512 + - 10009.512 + - 10020.654 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10023.469 + - 10021.757 + - 10021.757 + - 10025.163 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10025.75 + - 10027.798 + - 10024.668 + - 10034.252 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10032.781 + - 10030.902 + - 10024.027 + - 10033.289 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10047.442 + - 10048.982 + - 10040.834 + - 10051.131 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10037.12 + - 10043.02 + - 10035.32 + - 10044.118 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10037.419 + - 10032.233 + - 10030.174 + - 10037.419 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10050.831 + - 10050.1045 + - 10042.02 + - 10051.824 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10054.002 + - 10046.74 + - 10046.74 + - 10054.002 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10062.414 + - 10062.583 + - 10062.414 + - 10063.125 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10073.692 + - 10081.254 + - 10073.123 + - 10081.883 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10079.561 + - 10076.704 + - 10076.038 + - 10080.196 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10073.611 + - 10063.774 + - 10063.774 + - 10073.611 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10067.248 + - 10069.84 + - 10066.771 + - 10075.259 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10078.627 + - 10081.208 + - 10078.627 + - 10083.124 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10086.6875 + - 10077.448 + - 10077.448 + - 10086.6875 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10085.609 + - 10087.953 + - 10085.609 + - 10091.173 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10089.437 + - 10091.102 + - 10088.885 + - 10091.862 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10099.03 + - 10103.755 + - 10096.989 + - 10105.699 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10102.8125 + - 10100.557 + - 10098.9 + - 10105.307 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10120.732 + - 10122.23 + - 10113.097 + - 10122.23 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10127.427 + - 10123.572 + - 10120.601 + - 10127.427 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10113.288 + - 10117.645 + - 10109.591 + - 10117.645 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10127.977 + - 10121.423 + - 10121.423 + - 10130.556 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10129.166 + - 10130.585 + - 10123.8545 + - 10133.1875 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10129.735 + - 10126.024 + - 10125.531 + - 10132.567 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10144.795 + - 10147.231 + - 10139.145 + - 10147.231 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10139.683 + - 10140.393 + - 10137.989 + - 10147.273 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10135.645 + - 10131.009 + - 10130.071 + - 10135.645 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10138.863 + - 10133.982 + - 10131.194 + - 10139.238 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10142.857 + - 10139.261 + - 10137.127 + - 10142.857 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10137.884 + - 10138.183 + - 10134.759 + - 10139.175 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10151.599 + - 10153.397 + - 10148.712 + - 10156.566 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10160.571 + - 10154.642 + - 10153.229 + - 10160.571 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10176.348 + - 10172.55 + - 10169.101 + - 10176.348 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10176.441 + - 10173.695 + - 10170.347 + - 10177.904 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10171.795 + - 10168.121 + - 10165.509 + - 10171.795 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10156.789 + - 10157.036 + - 10156.789 + - 10159.168 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10168.721 + - 10168.623 + - 10168.491 + - 10172.79 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10187.479 + - 10182.171 + - 10182.171 + - 10192.637 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10189.311 + - 10186.904 + - 10185.963 + - 10191.493 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10201.552 + - 10205.972 + - 10198.694 + - 10208.881 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10216.564 + - 10207.624 + - 10207.624 + - 10216.564 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10230.745 + - 10228.693 + - 10228.693 + - 10235.995 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10246.209 + - 10249.975 + - 10243.4795 + - 10251.093 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10257.874 + - 10253.844 + - 10253.844 + - 10260.628 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10258.053 + - 10262.58 + - 10257.497 + - 10263.344 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10249.078 + - 10252.391 + - 10249.078 + - 10259.99 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10264.856 + - 10263.654 + - 10261.819 + - 10269.36 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10271.307 + - 10268.595 + - 10267.952 + - 10278.986 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10298.649 + - 10293.17 + - 10288.774 + - 10298.649 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10307.609 + - 10303.361 + - 10303.361 + - 10309.177 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10297.446 + - 10298.832 + - 10293.478 + - 10301.2295 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10313.828 + - 10313.514 + - 10312.098 + - 10318.437 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10312.943 + - 10313.745 + - 10308.92 + - 10316.961 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10315.878 + - 10311.403 + - 10309.946 + - 10315.878 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10327.282 + - 10321.952 + - 10321.169 + - 10330.895 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10343.657 + - 10349.343 + - 10343.657 + - 10350.541 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10348.69 + - 10352.543 + - 10347.596 + - 10356.503 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10365.386 + - 10367.057 + - 10365.386 + - 10374.77 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10379.395 + - 10380.571 + - 10379.395 + - 10388.26 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10408.14 + - 10401.795 + - 10397.721 + - 10408.169 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10410.31 + - 10410.799 + - 10407.911 + - 10410.799 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10428.503 + - 10428.76 + - 10427.45 + - 10428.76 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10435.775 + - 10436.692 + - 10435.775 + - 10439.123 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10446.099 + - 10445.637 + - 10445.477 + - 10452.7 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10474.219 + - 10466.419 + - 10465.439 + - 10474.219 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10481.995 + - 10483.209 + - 10479.235 + - 10485.364 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10480.343 + - 10476.704 + - 10476.704 + - 10484.936 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10496.42 + - 10493.021 + - 10493.021 + - 10496.42 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10498.253 + - 10498.016 + - 10495.788 + - 10500.783 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10520.55 + - 10519.227 + - 10513.941 + - 10521.65 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10524.047 + - 10522.942 + - 10522.942 + - 10527.995 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10529.864 + - 10530.6045 + - 10529.864 + - 10535.931 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10544.952 + - 10549.9795 + - 10544.952 + - 10556.403 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10565.47 + - 10570.937 + - 10560.455 + - 10570.937 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10567.462 + - 10565.919 + - 10565.919 + - 10568.612 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10570.48 + - 10570.314 + - 10567.626 + - 10575.037 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10580.648 + - 10580.262 + - 10579.6455 + - 10586.584 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10589.349 + - 10585.426 + - 10585.04 + - 10592.077 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10580.13 + - 10581.341 + - 10579.47 + - 10585.129 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10590.291 + - 10587.389 + - 10584.711 + - 10595.849 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10604.727 + - 10597.468 + - 10595.191 + - 10604.727 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10614.974 + - 10612.295 + - 10612.295 + - 10617.985 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10627.94 + - 10623.945 + - 10619.936 + - 10629.104 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10622.001 + - 10621.284 + - 10618.486 + - 10623.221 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10631.231 + - 10634.898 + - 10626.007 + - 10634.898 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10623.22 + - 10624.077 + - 10619.999 + - 10627.677 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10640.208 + - 10639.786 + - 10638.675 + - 10641.735 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10649.93 + - 10642.898 + - 10642.898 + - 10652.19 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10657.3125 + - 10655.802 + - 10646.781 + - 10658.451 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10666.767 + - 10667.875 + - 10665.748 + - 10667.875 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10683.0625 + - 10689.359 + - 10683.0625 + - 10690.565 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10691.525 + - 10693.46 + - 10686.903 + - 10696.094 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10705.215 + - 10706.754 + - 10699.4 + - 10706.754 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10718.576 + - 10722.6 + - 10718.576 + - 10727.626 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10730.896 + - 10726.659 + - 10722.28 + - 10731.412 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10746.754 + - 10751.108 + - 10739.982 + - 10751.108 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10734.256 + - 10736.268 + - 10732.896 + - 10737.05 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10752.055 + - 10748.057 + - 10743.392 + - 10752.055 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10750.739 + - 10752.581 + - 10750.416 + - 10756.174 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10749.287 + - 10753.498 + - 10742.193 + - 10753.498 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10754.435 + - 10758.841 + - 10754.178 + - 10761.924 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10758.089 + - 10755.569 + - 10754.922 + - 10759.695 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10767.457 + - 10762.14 + - 10762.14 + - 10767.457 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10770.923 + - 10773.292 + - 10770.923 + - 10777.184 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10777.672 + - 10783.424 + - 10777.672 + - 10783.78 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10780.903 + - 10780.977 + - 10780.885 + - 10781.746 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10800.961 + - 10796.026 + - 10793.916 + - 10800.961 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10803.593 + - 10809.134 + - 10802.321 + - 10812.74 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10807.734 + - 10809.278 + - 10802.51 + - 10810.05 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10821.89 + - 10822.086 + - 10818.983 + - 10823.383 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10823.289 + - 10817.893 + - 10815.109 + - 10823.289 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10830.757 + - 10829.766 + - 10827.748 + - 10834.726 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10826.496 + - 10825.457 + - 10823.939 + - 10826.496 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10825.362 + - 10825.559 + - 10816.234 + - 10825.559 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10813.174 + - 10811.769 + - 10806.474 + - 10817.533 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10811.725 + - 10808.842 + - 10808.842 + - 10812.281 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10812.296 + - 10812.692 + - 10812.296 + - 10820.923 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10825.227 + - 10827.732 + - 10818.05 + - 10827.732 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10811.671 + - 10812.585 + - 10811.671 + - 10814.096 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10809.872 + - 10816.555 + - 10808.862 + - 10816.555 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10818.084 + - 10820.438 + - 10818.084 + - 10826.757 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10828.493 + - 10829.124 + - 10827.815 + - 10830.301 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10855.374 + - 10854.548 + - 10850.594 + - 10856.955 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10849.052 + - 10844.194 + - 10844.194 + - 10850.87 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10843.267 + - 10844.562 + - 10843.267 + - 10847.117 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10860.405 + - 10861.62 + - 10856.177 + - 10861.62 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10861.461 + - 10865.119 + - 10861.461 + - 10868.087 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10867.682 + - 10866.414 + - 10858.192 + - 10868.465 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10874.734 + - 10870.759 + - 10870.759 + - 10877.992 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10882.994 + - 10878.359 + - 10875.717 + - 10883.247 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10892.533 + - 10894.764 + - 10892.533 + - 10904.363 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10889.893 + - 10889.457 + - 10889.457 + - 10895.306 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10894.759 + - 10887.782 + - 10886.465 + - 10894.759 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10892.592 + - 10893.652 + - 10885.459 + - 10895.619 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10879.858 + - 10881.005 + - 10878.817 + - 10888.257 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10876.071 + - 10879.215 + - 10876.071 + - 10884.217 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10880.957 + - 10875.566 + - 10875.566 + - 10880.957 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10875.278 + - 10874.737 + - 10873.133 + - 10882.153 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10866.421 + - 10868.026 + - 10864.873 + - 10868.367 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10884.016 + - 10877.699 + - 10877.391 + - 10884.676 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10868.822 + - 10876.166 + - 10867.826 + - 10878.598 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10895.887 + - 10891.538 + - 10891.109 + - 10895.887 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10893.282 + - 10896.234 + - 10893.083 + - 10901.089 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10908.817 + - 10911.316 + - 10903.267 + - 10913.828 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10896.777 + - 10897.496 + - 10896.777 + - 10901.056 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10913.606 + - 10917.441 + - 10912.494 + - 10920.101 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10923.778 + - 10923.322 + - 10919.142 + - 10928.732 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10928.574 + - 10935.239 + - 10926.141 + - 10937.191 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10945.513 + - 10942.481 + - 10942.481 + - 10945.771 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10962.755 + - 10958.821 + - 10955.902 + - 10964.779 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10952.007 + - 10952.556 + - 10952.007 + - 10953.2705 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10953.703 + - 10951.507 + - 10950.784 + - 10958.664 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10964.152 + - 10959.486 + - 10959.486 + - 10964.968 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10955.933 + - 10952.435 + - 10952.435 + - 10958.681 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10954.021 + - 10953 + - 10953 + - 10960.204 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10960.446 + - 10961.209 + - 10960.446 + - 10971.91 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10957.498 + - 10959.856 + - 10957.073 + - 10967.82 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10951.618 + - 10952.945 + - 10951.415 + - 10953.537 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10966.697 + - 10968.458 + - 10966.697 + - 10972.767 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10978.981 + - 10976.371 + - 10975.659 + - 10978.981 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10991.419 + - 10991.204 + - 10984.77 + - 10993.898 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10978.985 + - 10979.324 + - 10978.255 + - 10986.567 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10998.739 + - 10993.852 + - 10991.532 + - 11001.078 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10987.822 + - 10985.272 + - 10985.272 + - 10990.816 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10976.375 + - 10976.6875 + - 10976.375 + - 10982.491 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10985.827 + - 10982.457 + - 10979.611 + - 10985.827 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10996.407 + - 10997.082 + - 10993.49 + - 10998.061 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 10994.488 + - 10992.08 + - 10992.08 + - 10995.445 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11001.925 + - 10994.197 + - 10994.197 + - 11002.162 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11009.653 + - 11013.293 + - 11009.326 + - 11016.033 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11014.248 + - 11012.21 + - 11008.911 + - 11015.995 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11020.523 + - 11017.51 + - 11014.341 + - 11023.849 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11029.858 + - 11036.534 + - 11027.282 + - 11037.009 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11026.621 + - 11028.357 + - 11026.111 + - 11028.842 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11033.218 + - 11030.9795 + - 11029.633 + - 11034.62 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11029.004 + - 11021.786 + - 11021.786 + - 11031.58 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11040.071 + - 11032.593 + - 11032.323 + - 11040.071 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11039.065 + - 11032.887 + - 11032.887 + - 11041.339 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11055.462 + - 11053.9375 + - 11051.832 + - 11056.715 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11053.588 + - 11047.277 + - 11047.277 + - 11054.224 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11053.251 + - 11053.279 + - 11053.251 + - 11056.115 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11054.789 + - 11062.279 + - 11054.789 + - 11065.403 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11079.874 + - 11074.351 + - 11074.351 + - 11082.911 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11093.8545 + - 11093.618 + - 11090.526 + - 11099.584 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11085.897 + - 11089.773 + - 11084.181 + - 11092.513 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11089.404 + - 11084.8545 + - 11084.8545 + - 11092.885 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11086.257 + - 11085.614 + - 11085.614 + - 11091.105 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11085.505 + - 11094.497 + - 11084.045 + - 11095.224 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11091.505 + - 11088.004 + - 11088.004 + - 11096.178 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11108.605 + - 11105.485 + - 11105.485 + - 11109.114 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11098.049 + - 11098.721 + - 11098.049 + - 11104.161 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11094.209 + - 11098.651 + - 11094.209 + - 11100.522 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11118.495 + - 11115.889 + - 11115.889 + - 11120.585 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11125.4 + - 11120.462 + - 11120.462 + - 11128.919 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11142.486 + - 11139.7295 + - 11139.531 + - 11144.523 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11157.577 + - 11160.176 + - 11156.669 + - 11165.343 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11172.026 + - 11166.305 + - 11166.305 + - 11172.995 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11162.234 + - 11160.33 + - 11160.33 + - 11162.234 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11157.348 + - 11155.729 + - 11146.959 + - 11157.348 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11141.329 + - 11143.876 + - 11140.33 + - 11145.748 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11143.42 + - 11146.777 + - 11139.947 + - 11148.157 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11155.163 + - 11148.056 + - 11148.056 + - 11155.163 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11152.505 + - 11153.195 + - 11152.224 + - 11155.894 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11144.12 + - 11143.16 + - 11137.553 + - 11146.547 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11136.612 + - 11137.309 + - 11135.113 + - 11137.692 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11143.822 + - 11143.787 + - 11143.787 + - 11147.363 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11154.206 + - 11148.274 + - 11148.274 + - 11154.206 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11168.588 + - 11167.619 + - 11161.064 + - 11168.588 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11148.815 + - 11156.241 + - 11148.144 + - 11156.336 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11151.63 + - 11151.777 + - 11151.451 + - 11160.661 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11156.014 + - 11157.292 + - 11148.78 + - 11157.292 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11139.899 + - 11149.04 + - 11139.899 + - 11150.569 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11152.63 + - 11151.619 + - 11142.67 + - 11152.63 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11153.988 + - 11146.876 + - 11146.424 + - 11154.866 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11165.648 + - 11168.1875 + - 11165.648 + - 11174.504 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11172.067 + - 11169.32 + - 11168.16 + - 11178.816 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11190.856 + - 11186.227 + - 11186.227 + - 11191.57 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11209.512 + - 11204.513 + - 11204.513 + - 11212.704 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11218.069 + - 11216.658 + - 11216.658 + - 11219.452 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11223.021 + - 11216.226 + - 11215.546 + - 11223.021 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11207.079 + - 11213.0625 + - 11205.407 + - 11213.231 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11207.038 + - 11208.528 + - 11203.375 + - 11210.664 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11228.63 + - 11229.478 + - 11225.958 + - 11229.478 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11233.895 + - 11233.556 + - 11228.391 + - 11238.374 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11231.861 + - 11231.941 + - 11227.355 + - 11236.625 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11223.902 + - 11226.849 + - 11223.047 + - 11231.121 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11228.249 + - 11229.858 + - 11225.975 + - 11230.592 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11223.007 + - 11221.296 + - 11220.97 + - 11223.225 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11227.725 + - 11232.167 + - 11223.006 + - 11232.501 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11237.708 + - 11231.821 + - 11231.821 + - 11239.722 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11240.351 + - 11242.277 + - 11240.351 + - 11244.734 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11254.184 + - 11248.165 + - 11244.547 + - 11254.184 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11242.953 + - 11243.506 + - 11242.953 + - 11252.232 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11260.538 + - 11259.256 + - 11259.256 + - 11267.811 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11274.946 + - 11269.833 + - 11265.3125 + - 11275.914 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11266.538 + - 11262.859 + - 11255.941 + - 11267.437 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11255.12 + - 11251.293 + - 11251.293 + - 11259.089 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11266.318 + - 11258.249 + - 11255.335 + - 11266.318 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11263.656 + - 11255.144 + - 11253.08 + - 11263.656 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11259.392 + - 11260.712 + - 11259.392 + - 11265.026 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11275.5 + - 11271.464 + - 11268.787 + - 11275.5 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11267.343 + - 11273.177 + - 11264.275 + - 11273.513 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11270.988 + - 11267.984 + - 11264.998 + - 11271.627 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11262.387 + - 11264.193 + - 11262.387 + - 11271.798 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11254.166 + - 11255.512 + - 11254.166 + - 11257.702 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11263.957 + - 11263.444 + - 11261.417 + - 11265.311 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11268.803 + - 11262.802 + - 11262.802 + - 11269.35 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11263.888 + - 11258.246 + - 11257.023 + - 11264.396 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11257.105 + - 11257.767 + - 11254.319 + - 11257.767 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11270.738 + - 11275.71 + - 11268.849 + - 11279.641 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11270.426 + - 11268.394 + - 11265.494 + - 11272.765 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11268.68 + - 11269.202 + - 11265.68 + - 11275.081 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11278.717 + - 11281.129 + - 11278.717 + - 11283.302 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11281.416 + - 11285.136 + - 11273.943 + - 11285.136 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11278.413 + - 11281.924 + - 11278.413 + - 11288.119 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11280.181 + - 11275.854 + - 11269.822 + - 11280.181 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11285.863 + - 11284.69 + - 11278.383 + - 11285.863 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11269.479 + - 11273.979 + - 11269.479 + - 11275.197 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11269.644 + - 11267.272 + - 11267.272 + - 11272.342 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11277.515 + - 11279.088 + - 11277.515 + - 11284.979 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11295.245 + - 11289.575 + - 11289.575 + - 11296.085 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11280.918 + - 11282.343 + - 11280.918 + - 11292.207 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11281.59 + - 11281.716 + - 11281.59 + - 11286.003 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11280.931 + - 11277.903 + - 11277.903 + - 11280.931 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11266.802 + - 11270.176 + - 11265.905 + - 11273.788 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11279.015 + - 11271.459 + - 11268.716 + - 11279.015 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11275.746 + - 11280.12 + - 11275.746 + - 11282.972 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11286.518 + - 11292.411 + - 11286.518 + - 11292.997 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11306.722 + - 11306.11 + - 11299.684 + - 11306.722 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11290.165 + - 11295.89 + - 11290.165 + - 11301.035 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11309.078 + - 11311.978 + - 11309.078 + - 11318.191 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11313.133 + - 11313.14 + - 11310.0625 + - 11321.772 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11318.225 + - 11311.971 + - 11311.971 + - 11318.926 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11334.926 + - 11331.307 + - 11325.296 + - 11334.926 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11320.088 + - 11322.13 + - 11320.088 + - 11326.051 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11341.097 + - 11340.753 + - 11332.899 + - 11341.097 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11324.921 + - 11327.074 + - 11323.526 + - 11327.567 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11316.984 + - 11321.198 + - 11315.178 + - 11326.52 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11320.456 + - 11310.342 + - 11310.342 + - 11320.456 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11328.845 + - 11325.658 + - 11321.334 + - 11330.769 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11323.129 + - 11322.05 + - 11322.05 + - 11326.616 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11341.67 + - 11334.276 + - 11334.276 + - 11342.551 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11348.5625 + - 11351.661 + - 11348.5625 + - 11354.39 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11349.699 + - 11348.984 + - 11343.549 + - 11350.954 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11361.35 + - 11357.63 + - 11352.36 + - 11361.35 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11356.757 + - 11352.539 + - 11351.257 + - 11356.757 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11363.417 + - 11367.785 + - 11363.335 + - 11367.813 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11374.326 + - 11376.347 + - 11369.054 + - 11380.089 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11390.142 + - 11391.619 + - 11388.173 + - 11394.772 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11396.515 + - 11397.718 + - 11391.194 + - 11397.718 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11395.553 + - 11394.746 + - 11394.623 + - 11402.468 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11405.643 + - 11407.732 + - 11401.668 + - 11408.366 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11418.1 + - 11414.872 + - 11410.432 + - 11418.317 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11413.456 + - 11409.598 + - 11409.598 + - 11416.138 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11408.715 + - 11402.046 + - 11402.046 + - 11410.483 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11399.337 + - 11399.204 + - 11393.978 + - 11401.05 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11411.641 + - 11410.054 + - 11407.617 + - 11414.759 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11406.626 + - 11407.057 + - 11398.692 + - 11407.057 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11416.415 + - 11413.701 + - 11413.701 + - 11421.94 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11432.79 + - 11433.892 + - 11427.825 + - 11433.892 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11440.392 + - 11440.572 + - 11432.968 + - 11440.572 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11432.64 + - 11433.6045 + - 11428.124 + - 11433.6045 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11429.961 + - 11431.496 + - 11429.961 + - 11434.24 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11448.968 + - 11451.125 + - 11445.257 + - 11453.488 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11437.633 + - 11436.777 + - 11433.823 + - 11443.417 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11438.604 + - 11431.583 + - 11431.583 + - 11439.858 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11447.109 + - 11448.073 + - 11443.102 + - 11450.446 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11438.101 + - 11443.513 + - 11438.101 + - 11445.193 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11438.355 + - 11444.633 + - 11437.841 + - 11447.787 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11457.33 + - 11456.555 + - 11455.996 + - 11466.673 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11474.645 + - 11476.531 + - 11474.645 + - 11477.27 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11479.861 + - 11483.371 + - 11477.44 + - 11487.288 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11487.113 + - 11479.029 + - 11477.87 + - 11487.113 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11471.781 + - 11471.821 + - 11471.781 + - 11479.69 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11485.372 + - 11487.5625 + - 11480.935 + - 11487.5625 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11494.001 + - 11486.649 + - 11486.649 + - 11494.001 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11491.672 + - 11499.027 + - 11488.746 + - 11499.85 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11495.131 + - 11493.677 + - 11491.516 + - 11497.657 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11515.022 + - 11513.328 + - 11508.221 + - 11515.022 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11514.481 + - 11510.291 + - 11510.291 + - 11516.863 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11524.146 + - 11524.571 + - 11519.332 + - 11528.141 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11526.527 + - 11531.32 + - 11526.221 + - 11534.431 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11547.658 + - 11541.05 + - 11540.307 + - 11547.658 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11547.48 + - 11551.083 + - 11547.48 + - 11552.614 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11552.777 + - 11553.699 + - 11552.777 + - 11560.063 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11562.858 + - 11565.889 + - 11562.858 + - 11573.325 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11561.842 + - 11562.767 + - 11561.842 + - 11566.162 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11577.048 + - 11581.829 + - 11575.698 + - 11583.513 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11585.83 + - 11585.252 + - 11584.665 + - 11591.962 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11583.014 + - 11580.72 + - 11580.72 + - 11584.187 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11575.123 + - 11577.004 + - 11575.123 + - 11586.058 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11587.954 + - 11585.8125 + - 11585.8125 + - 11592.921 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11591.984 + - 11592.565 + - 11588.106 + - 11592.565 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11597.55 + - 11587.206 + - 11587.206 + - 11597.55 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11594.7705 + - 11598.766 + - 11592.741 + - 11600.524 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11605.46 + - 11607.17 + - 11604.31 + - 11607.206 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11610.349 + - 11611.858 + - 11608.784 + - 11616.184 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11628.418 + - 11620.991 + - 11620.991 + - 11631.221 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11615.71 + - 11622.344 + - 11615.285 + - 11622.812 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11642.627 + - 11643.584 + - 11633.832 + - 11643.584 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11652.47 + - 11655.926 + - 11646.16 + - 11655.926 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11638.71 + - 11639.403 + - 11638.71 + - 11643.597 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11635.664 + - 11635.613 + - 11635.2705 + - 11637.791 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11655.853 + - 11658.3125 + - 11649.054 + - 11658.472 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11659.051 + - 11663.613 + - 11659.051 + - 11668.439 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11678.269 + - 11682.727 + - 11672.468 + - 11682.727 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11687.729 + - 11681.762 + - 11680.361 + - 11687.729 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11696.715 + - 11701.507 + - 11696.715 + - 11703.107 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11700.618 + - 11707.742 + - 11700.618 + - 11710.414 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11723.8 + - 11723.9795 + - 11716.045 + - 11726.184 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11741.701 + - 11737.021 + - 11736.852 + - 11741.701 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11754.701 + - 11759.375 + - 11754.614 + - 11759.705 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11752.146 + - 11752.096 + - 11744.064 + - 11752.146 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11733.698 + - 11734.926 + - 11733.698 + - 11738.256 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11743.907 + - 11741.933 + - 11741.933 + - 11748.315 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11756.017 + - 11755.08 + - 11752.923 + - 11756.303 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11763.639 + - 11765.653 + - 11759.199 + - 11766.634 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11775.695 + - 11773.623 + - 11768.329 + - 11775.695 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11782.984 + - 11783.6 + - 11780.338 + - 11784.846 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11784.084 + - 11779.663 + - 11779.663 + - 11786.753 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11788.479 + - 11787.961 + - 11784.77 + - 11789.546 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11803.441 + - 11805.617 + - 11800.892 + - 11808.1455 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11812.077 + - 11819.777 + - 11812.077 + - 11819.879 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11821.974 + - 11819.648 + - 11818.304 + - 11821.974 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11829.506 + - 11826.34 + - 11825.138 + - 11832.807 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11816.525 + - 11820.775 + - 11816.525 + - 11823.792 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11831.085 + - 11837.508 + - 11828.309 + - 11837.605 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11823.131 + - 11826.7705 + - 11820.071 + - 11829.638 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11821.611 + - 11820.751 + - 11816.467 + - 11822.149 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11819.152 + - 11823.823 + - 11819.152 + - 11828.45 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11827.532 + - 11829.66 + - 11827.532 + - 11837.038 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11838.926 + - 11838.977 + - 11838.926 + - 11839.735 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11836.218 + - 11833.151 + - 11833.151 + - 11836.218 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11828.267 + - 11822.659 + - 11818.976 + - 11828.267 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11841.768 + - 11835.451 + - 11832.933 + - 11841.768 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11838.274 + - 11842.438 + - 11836.339 + - 11842.438 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11853.493 + - 11860.722 + - 11852.084 + - 11860.851 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11847.982 + - 11852.358 + - 11847.982 + - 11855.746 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11856.335 + - 11850.519 + - 11848.688 + - 11856.335 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11839.228 + - 11838.812 + - 11838.1 + - 11846.795 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11840.5 + - 11839.544 + - 11829.03 + - 11840.632 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11824.861 + - 11826.752 + - 11824.861 + - 11835.86 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11822.466 + - 11820.905 + - 11820.905 + - 11828.007 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11827.574 + - 11827.656 + - 11819.487 + - 11827.656 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11815.732 + - 11810.587 + - 11810.587 + - 11819.416 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11819.046 + - 11818.862 + - 11818.862 + - 11820.914 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11841.589 + - 11843.217 + - 11839.775 + - 11848.463 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11843.659 + - 11836.725 + - 11836.725 + - 11845.559 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11839.223 + - 11840.375 + - 11838.528 + - 11847.86 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11840.175 + - 11840.239 + - 11830.883 + - 11840.239 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11841.87 + - 11840.92 + - 11839.72 + - 11848.886 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11864.745 + - 11863.02 + - 11854.081 + - 11865.227 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11879.378 + - 11876.959 + - 11873.848 + - 11883.443 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11901.36 + - 11899.131 + - 11893.26 + - 11901.36 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11911.03 + - 11914.437 + - 11911.03 + - 11920.148 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11923.956 + - 11927.109 + - 11918.537 + - 11927.109 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11926.339 + - 11925.34 + - 11925.34 + - 11935.075 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11931.323 + - 11936.421 + - 11927.687 + - 11936.421 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11930.045 + - 11933.6045 + - 11929.802 + - 11934.464 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11934.066 + - 11934.323 + - 11930.058 + - 11934.323 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11933.655 + - 11934.37 + - 11932.177 + - 11941.342 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11944.161 + - 11949.559 + - 11941.096 + - 11949.559 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11961.63 + - 11959.144 + - 11955.154 + - 11962.98 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11960.449 + - 11960.606 + - 11960.449 + - 11965.515 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11986.661 + - 11987.961 + - 11979.577 + - 11987.961 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11976.986 + - 11978.387 + - 11972.365 + - 11978.865 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11980.717 + - 11979.856 + - 11979.856 + - 11991.317 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12002.742 + - 12004.073 + - 11998.169 + - 12004.96 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11994.523 + - 11993.142 + - 11989.636 + - 11996.519 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11983.102 + - 11983.255 + - 11983.056 + - 11985.857 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11982.117 + - 11982.926 + - 11982.117 + - 11990.334 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11988.55 + - 11985.363 + - 11980.512 + - 11988.55 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11984.863 + - 11983.677 + - 11982.456 + - 11986.234 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11975.43 + - 11980.456 + - 11975.43 + - 11986.026 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11977.303 + - 11982.716 + - 11974.298 + - 11982.716 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11992.599 + - 11990.634 + - 11989.205 + - 11992.599 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11991.358 + - 11989.891 + - 11989.891 + - 11996.983 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11993.192 + - 11994.973 + - 11990.973 + - 11995.477 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11984.359 + - 11986.203 + - 11981.923 + - 11991.003 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11990.723 + - 11984.08 + - 11980.888 + - 11990.723 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11975.099 + - 11979.986 + - 11973.201 + - 11982.954 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11984.938 + - 11982.5205 + - 11980.9795 + - 11987.166 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11972.333 + - 11980.043 + - 11972.333 + - 11981.972 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11984.675 + - 11988.612 + - 11982.765 + - 11989.235 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 11986.659 + - 11988.625 + - 11981.761 + - 11988.625 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12004.692 + - 11999.962 + - 11999.962 + - 12006.157 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12012.647 + - 12012.696 + - 12004.555 + - 12012.696 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12017.651 + - 12025.031 + - 12017.651 + - 12028.243 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12030.185 + - 12032.821 + - 12028.443 + - 12037.884 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12032.018 + - 12035.289 + - 12032.018 + - 12036.888 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12027.739 + - 12029.702 + - 12027.739 + - 12030.28 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12049.3125 + - 12050.149 + - 12044.939 + - 12053.498 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12052.64 + - 12049.072 + - 12049.072 + - 12055.488 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12053.771 + - 12055.106 + - 12053.771 + - 12059.6045 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12066.351 + - 12071.858 + - 12062.216 + - 12071.947 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12087.408 + - 12084.929 + - 12079.213 + - 12087.998 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12097.613 + - 12094.235 + - 12094.235 + - 12105.022 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12098.653 + - 12096.998 + - 12096.792 + - 12098.653 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12099.139 + - 12096.887 + - 12096.887 + - 12101.6 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12105.204 + - 12103.4 + - 12103.4 + - 12111.279 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12099.924 + - 12099.846 + - 12097.763 + - 12108.797 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12098.803 + - 12102.321 + - 12094.106 + - 12103.842 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12091.456 + - 12096.853 + - 12089.234 + - 12096.853 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12111.999 + - 12111.955 + - 12111.464 + - 12113.631 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12121.468 + - 12118.078 + - 12115.482 + - 12121.468 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12139.016 + - 12140.66 + - 12133.585 + - 12141.714 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12156.578 + - 12158.543 + - 12154.374 + - 12160.189 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12150.839 + - 12155.46 + - 12149.157 + - 12157.407 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12142.602 + - 12139.126 + - 12139.126 + - 12148.067 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12140.252 + - 12141.324 + - 12132.236 + - 12143.191 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12153.885 + - 12155.455 + - 12152.942 + - 12159.427 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12165.02 + - 12165.841 + - 12163.968 + - 12174.6 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12183.776 + - 12180.75 + - 12180.05 + - 12185.724 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12198.554 + - 12200.317 + - 12198.554 + - 12203.093 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12209.643 + - 12211.681 + - 12209.643 + - 12215.419 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12236.416 + - 12234.986 + - 12234.986 + - 12238.767 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12218.174 + - 12225.668 + - 12218.174 + - 12228.375 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12222.586 + - 12225.967 + - 12218.069 + - 12225.967 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12236.392 + - 12237.221 + - 12236.392 + - 12244.49 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12243.729 + - 12233.342 + - 12232.594 + - 12243.729 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12247.279 + - 12245.444 + - 12238.7 + - 12248.687 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12256.779 + - 12258.4375 + - 12251.928 + - 12258.4375 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12270.173 + - 12271.395 + - 12263.883 + - 12271.395 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12280.991 + - 12282.04 + - 12274.688 + - 12283.993 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12280.8955 + - 12291.825 + - 12280.8955 + - 12291.825 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12291.622 + - 12289.094 + - 12289.094 + - 12300.346 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12298.325 + - 12298.838 + - 12298.325 + - 12304.139 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12307.07 + - 12307.03 + - 12306.589 + - 12307.446 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12301.231 + - 12302.564 + - 12293.458 + - 12302.564 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12293.494 + - 12293.35 + - 12288.694 + - 12293.494 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12299.904 + - 12301.136 + - 12296.852 + - 12301.136 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12294.879 + - 12292.418 + - 12292.418 + - 12299.705 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12309.312 + - 12303.696 + - 12303.696 + - 12311.698 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12322.662 + - 12324.653 + - 12319.154 + - 12326.18 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12318.849 + - 12308.198 + - 12308.198 + - 12318.849 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12321.645 + - 12323.064 + - 12321.645 + - 12331.651 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12327.708 + - 12318.342 + - 12318.342 + - 12327.708 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12329.385 + - 12327.697 + - 12323.562 + - 12330.674 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12330.1 + - 12330.662 + - 12328.524 + - 12332.701 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12328.035 + - 12327.377 + - 12326.175 + - 12330.096 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12329.358 + - 12320.044 + - 12320.044 + - 12330.776 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12323.41 + - 12315.946 + - 12315.946 + - 12324.154 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12308.928 + - 12305.622 + - 12305.088 + - 12311.292 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12320.621 + - 12321.908 + - 12320.621 + - 12329.511 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12330.902 + - 12332.857 + - 12326.209 + - 12334.507 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12326.653 + - 12323.068 + - 12320.077 + - 12326.653 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12325.933 + - 12326.039 + - 12325.933 + - 12334.448 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12341.748 + - 12336.14 + - 12335.407 + - 12343.316 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12336.975 + - 12340.041 + - 12336.486 + - 12341.295 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12340.028 + - 12343.522 + - 12338.762 + - 12347.083 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12347.274 + - 12351.389 + - 12347.274 + - 12354.9 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12372.101 + - 12362.862 + - 12362.862 + - 12372.599 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12356.998 + - 12356.206 + - 12356.206 + - 12364.46 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12362.098 + - 12363.635 + - 12355.306 + - 12363.635 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12369.136 + - 12368.486 + - 12368.486 + - 12376.686 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12369.162 + - 12370.829 + - 12367.493 + - 12373.432 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12381.529 + - 12375.503 + - 12373.973 + - 12381.529 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12376.526 + - 12377.14 + - 12372.929 + - 12383.577 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12385.478 + - 12389.485 + - 12385.478 + - 12393.193 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12405.427 + - 12405.541 + - 12403.572 + - 12406.902 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12407.842 + - 12406.222 + - 12405.486 + - 12414.261 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12424.233 + - 12426.751 + - 12423.016 + - 12426.751 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12424.413 + - 12414.427 + - 12414.427 + - 12424.413 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12430.0205 + - 12428.592 + - 12428.592 + - 12433.31 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 12423.887 + - 12424.167 + - 12421.1045 + - 12426.315 +--- !u!114 &651764997 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 651764995} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 69c7f3bf337c843888b4a7031eef1027, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!222 &651764998 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 651764995} + m_CullTransparentMesh: 0 +--- !u!224 &651764999 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 651764995} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1171005471} + - {fileID: 1282012213} + - {fileID: 7790756} + - {fileID: 2023419335} + - {fileID: 1193932332} + - {fileID: 965001765} + - {fileID: 295062495} + - {fileID: 786790126} + - {fileID: 1762873902} + - {fileID: 270174828} + - {fileID: 1176866993} + - {fileID: 2001395445} + - {fileID: 997741617} + - {fileID: 456022028} + - {fileID: 50658836} + - {fileID: 68319940} + - {fileID: 1606064898} + - {fileID: 1321135645} + - {fileID: 1498267858} + - {fileID: 193992667} + - {fileID: 1889259906} + - {fileID: 2126879549} + - {fileID: 635823336} + - {fileID: 253333212} + m_Father: {fileID: 642070750} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 2, y: -438} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &652788974 GameObject: m_ObjectHideFlags: 0 @@ -405644,6 +613213,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 652830382} m_CullTransparentMesh: 0 +--- !u!1 &653018501 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 653018502} + - component: {fileID: 653018504} + - component: {fileID: 653018503} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &653018502 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 653018501} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1291069015} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 3, y: -3} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &653018503 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 653018501} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &653018504 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 653018501} + m_CullTransparentMesh: 0 --- !u!1 &653038261 GameObject: m_ObjectHideFlags: 0 @@ -405896,6 +613543,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Area @@ -405929,6 +613582,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -405967,6 +613621,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -406702,6 +614357,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -406895,6 +614551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -406914,6 +614573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -406964,6 +614626,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -406983,6 +614648,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407072,6 +614740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407091,6 +614762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407142,6 +614816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407161,6 +614838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407239,6 +614919,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407258,6 +614941,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407309,6 +614995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407328,6 +615017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407406,6 +615098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407425,6 +615120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407476,6 +615174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407495,6 +615196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407573,6 +615277,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407592,6 +615299,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407643,6 +615353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407662,6 +615375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407740,6 +615456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407759,6 +615478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407810,6 +615532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407829,6 +615554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407907,6 +615635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407926,6 +615657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -407977,6 +615711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -407996,6 +615733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408074,6 +615814,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408093,6 +615836,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408144,6 +615890,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408163,6 +615912,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408260,6 +616012,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -408453,6 +616206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408472,6 +616228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408522,6 +616281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408541,6 +616303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408630,6 +616395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408649,6 +616417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408700,6 +616471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408719,6 +616493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408797,6 +616574,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408816,6 +616596,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408867,6 +616650,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408886,6 +616672,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -408964,6 +616753,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -408983,6 +616775,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409034,6 +616829,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409053,6 +616851,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409131,6 +616932,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409150,6 +616954,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409201,6 +617008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409220,6 +617030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409298,6 +617111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409317,6 +617133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409368,6 +617187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409387,6 +617209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409465,6 +617290,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409484,6 +617312,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409535,6 +617366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409554,6 +617388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409632,6 +617469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409651,6 +617491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -409702,6 +617545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -409721,6 +617567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -411902,6 +619751,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &666738228 GameObject: m_ObjectHideFlags: 1 @@ -413246,6 +621108,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 675857760} m_CullTransparentMesh: 0 +--- !u!1 &676046853 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 676046854} + - component: {fileID: 676046856} + - component: {fileID: 676046855} + m_Layer: 0 + m_Name: axis_x3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &676046854 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 676046853} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1321135645} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 602.187, y: -379} + m_SizeDelta: {x: 154.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &676046855 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 676046853} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 539 +--- !u!222 &676046856 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 676046853} + m_CullTransparentMesh: 0 --- !u!1 &676646523 GameObject: m_ObjectHideFlags: 0 @@ -414735,6 +622675,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &682177880 GameObject: m_ObjectHideFlags: 0 @@ -416110,6 +624063,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: PieChart @@ -416143,6 +624102,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -416181,6 +624141,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -416408,6 +624369,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -416601,6 +624563,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -416620,6 +624585,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -416670,6 +624638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -416689,6 +624660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -416778,6 +624752,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -416797,6 +624774,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -416848,6 +624828,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -416867,6 +624850,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -416945,6 +624931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -416964,6 +624953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -417015,6 +625007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -417034,6 +625029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -417112,6 +625110,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -417131,6 +625132,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -417182,6 +625186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -417201,6 +625208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -417279,6 +625289,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -417298,6 +625311,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -417349,6 +625365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -417368,6 +625387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -417446,6 +625468,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -417465,6 +625490,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -417516,6 +625544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -417535,6 +625566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -418227,6 +626261,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &692014449 GameObject: m_ObjectHideFlags: 0 @@ -418968,6 +627015,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &695978664 MonoBehaviour: m_ObjectHideFlags: 0 @@ -419318,6 +627477,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 697550260} m_CullTransparentMesh: 0 +--- !u!1 &698019809 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 698019810} + - component: {fileID: 698019812} + - component: {fileID: 698019811} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &698019810 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 698019809} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1149057101} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &698019811 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 698019809} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &698019812 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 698019809} + m_CullTransparentMesh: 0 --- !u!1 &698222139 GameObject: m_ObjectHideFlags: 0 @@ -420067,6 +628304,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 700913369} m_CullTransparentMesh: 0 +--- !u!1 &701076987 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 701076988} + - component: {fileID: 701076990} + - component: {fileID: 701076989} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &701076988 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 701076987} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1522821510} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 442, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &701076989 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 701076987} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 2020-10-25 +--- !u!222 &701076990 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 701076987} + m_CullTransparentMesh: 0 --- !u!1 &701293027 GameObject: m_ObjectHideFlags: 1 @@ -421190,6 +629505,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 707711033} m_CullTransparentMesh: 0 +--- !u!1 &708248353 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 708248354} + - component: {fileID: 708248356} + - component: {fileID: 708248355} + m_Layer: 5 + m_Name: SubText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &708248354 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 708248353} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 607091243} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 2, y: -14} + m_SizeDelta: {x: -4, y: 25} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &708248355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 708248353} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.6886792, g: 0.6886792, b: 0.6886792, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "K\u7EBF\u56FE" +--- !u!222 &708248356 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 708248353} + m_CullTransparentMesh: 0 --- !u!1 &708482606 GameObject: m_ObjectHideFlags: 0 @@ -421463,6 +629856,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 710681582} m_CullTransparentMesh: 0 +--- !u!1 &710953746 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 710953747} + - component: {fileID: 710953749} + - component: {fileID: 710953748} + m_Layer: 0 + m_Name: axis_x5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &710953747 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 710953746} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1321135645} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 911.787, y: -379} + m_SizeDelta: {x: 154.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &710953748 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 710953746} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 699 +--- !u!222 &710953749 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 710953746} + m_CullTransparentMesh: 0 --- !u!1 &711119312 GameObject: m_ObjectHideFlags: 1 @@ -423272,6 +631743,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &722153197 GameObject: m_ObjectHideFlags: 0 @@ -424627,6 +633111,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: ScatterChart @@ -424660,6 +633150,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -424698,6 +633189,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -425421,6 +633913,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -425614,6 +634107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -425633,6 +634129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.8 m_TooltipFormatter: m_NumericFormatter: @@ -425683,6 +634182,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -425702,6 +634204,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -425791,6 +634296,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -425810,6 +634318,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -425861,6 +634372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -425880,6 +634394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -425958,6 +634475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -425977,6 +634497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426028,6 +634551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426047,6 +634573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426125,6 +634654,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426144,6 +634676,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426195,6 +634730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426214,6 +634752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426292,6 +634833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426311,6 +634855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426362,6 +634909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426381,6 +634931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426459,6 +635012,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426478,6 +635034,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426529,6 +635088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426548,6 +635110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426626,6 +635191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426645,6 +635213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426696,6 +635267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426715,6 +635289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426793,6 +635370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426812,6 +635392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426863,6 +635446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426882,6 +635468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -426960,6 +635549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -426979,6 +635571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -427030,6 +635625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -427049,6 +635647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -427127,6 +635728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -427146,6 +635750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -427197,6 +635804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -427216,6 +635826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -427294,6 +635907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -427313,6 +635929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -427364,6 +635983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -427383,6 +636005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -428222,6 +636847,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &733025044 MonoBehaviour: m_ObjectHideFlags: 0 @@ -429519,6 +638256,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 737503301} m_CullTransparentMesh: 0 +--- !u!1 &737644430 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 737644431} + - component: {fileID: 737644433} + - component: {fileID: 737644432} + m_Layer: 0 + m_Name: axis_y11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &737644431 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 737644430} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 136043331} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 100.399994} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &737644432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 737644430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &737644433 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 737644430} + m_CullTransparentMesh: 0 --- !u!1 &737698904 GameObject: m_ObjectHideFlags: 0 @@ -431725,6 +640540,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &746328102 GameObject: m_ObjectHideFlags: 0 @@ -432621,6 +641449,70 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &751997007 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 751997008} + - component: {fileID: 751997010} + - component: {fileID: 751997009} + m_Layer: 0 + m_Name: painter_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &751997008 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 751997007} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &751997009 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 751997007} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &751997010 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 751997007} + m_CullTransparentMesh: 0 --- !u!1 &752166035 GameObject: m_ObjectHideFlags: 0 @@ -433441,6 +642333,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 0 m_PieSelectedOffset: 0 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &755719977 GameObject: m_ObjectHideFlags: 1 @@ -437057,6 +645962,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &771359784 GameObject: m_ObjectHideFlags: 0 @@ -437987,6 +646905,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &774444410 GameObject: m_ObjectHideFlags: 0 @@ -438434,6 +647365,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: PolarChart @@ -438467,6 +647404,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -438505,6 +647443,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -438873,6 +647812,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -439066,6 +648006,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439085,6 +648028,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439135,6 +648081,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439154,6 +648103,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439243,6 +648195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439262,6 +648217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439313,6 +648271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439332,6 +648293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439410,6 +648374,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439429,6 +648396,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439480,6 +648450,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439499,6 +648472,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439577,6 +648553,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439596,6 +648575,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439647,6 +648629,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439666,6 +648651,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439744,6 +648732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439763,6 +648754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439814,6 +648808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439833,6 +648830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439911,6 +648911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -439930,6 +648933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -439981,6 +648987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440000,6 +649009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440078,6 +649090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440097,6 +649112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440148,6 +649166,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440167,6 +649188,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440245,6 +649269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440264,6 +649291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440315,6 +649345,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440334,6 +649367,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440412,6 +649448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440431,6 +649470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440482,6 +649524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440501,6 +649546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440579,6 +649627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440598,6 +649649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440649,6 +649703,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440668,6 +649725,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440746,6 +649806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440765,6 +649828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440816,6 +649882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440835,6 +649904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440913,6 +649985,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -440932,6 +650007,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -440983,6 +650061,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441002,6 +650083,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441080,6 +650164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441099,6 +650186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441150,6 +650240,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441169,6 +650262,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441247,6 +650343,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441266,6 +650365,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441317,6 +650419,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441336,6 +650441,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441414,6 +650522,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441433,6 +650544,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441484,6 +650598,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441503,6 +650620,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441581,6 +650701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441600,6 +650723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441651,6 +650777,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441670,6 +650799,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441748,6 +650880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441767,6 +650902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441818,6 +650956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441837,6 +650978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441915,6 +651059,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -441934,6 +651081,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -441985,6 +651135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442004,6 +651157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442082,6 +651238,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442101,6 +651260,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442152,6 +651314,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442171,6 +651336,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442249,6 +651417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442268,6 +651439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442319,6 +651493,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442338,6 +651515,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442416,6 +651596,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442435,6 +651618,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442486,6 +651672,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442505,6 +651694,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442583,6 +651775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442602,6 +651797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442653,6 +651851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442672,6 +651873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442750,6 +651954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442769,6 +651976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442820,6 +652030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442839,6 +652052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442917,6 +652133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -442936,6 +652155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -442987,6 +652209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443006,6 +652231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443084,6 +652312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443103,6 +652334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443154,6 +652388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443173,6 +652410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443251,6 +652491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443270,6 +652513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443321,6 +652567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443340,6 +652589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443418,6 +652670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443437,6 +652692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443488,6 +652746,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443507,6 +652768,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443585,6 +652849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443604,6 +652871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443655,6 +652925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443674,6 +652947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443752,6 +653028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443771,6 +653050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443822,6 +653104,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443841,6 +653126,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443919,6 +653207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -443938,6 +653229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -443989,6 +653283,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444008,6 +653305,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444086,6 +653386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444105,6 +653408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444156,6 +653462,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444175,6 +653484,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444253,6 +653565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444272,6 +653587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444323,6 +653641,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444342,6 +653663,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444420,6 +653744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444439,6 +653766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444490,6 +653820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444509,6 +653842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444587,6 +653923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444606,6 +653945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444657,6 +653999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444676,6 +654021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444754,6 +654102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444773,6 +654124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444824,6 +654178,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444843,6 +654200,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444921,6 +654281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -444940,6 +654303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -444991,6 +654357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445010,6 +654379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445088,6 +654460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445107,6 +654482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445158,6 +654536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445177,6 +654558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445255,6 +654639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445274,6 +654661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445325,6 +654715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445344,6 +654737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445422,6 +654818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445441,6 +654840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445492,6 +654894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445511,6 +654916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445589,6 +654997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445608,6 +655019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445659,6 +655073,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445678,6 +655095,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445756,6 +655176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445775,6 +655198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445826,6 +655252,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445845,6 +655274,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445923,6 +655355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -445942,6 +655377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -445993,6 +655431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446012,6 +655453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446090,6 +655534,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446109,6 +655556,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446160,6 +655610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446179,6 +655632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446257,6 +655713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446276,6 +655735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446327,6 +655789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446346,6 +655811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446424,6 +655892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446443,6 +655914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446494,6 +655968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446513,6 +655990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446591,6 +656071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446610,6 +656093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446661,6 +656147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446680,6 +656169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446758,6 +656250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446777,6 +656272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446828,6 +656326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446847,6 +656348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446925,6 +656429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -446944,6 +656451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -446995,6 +656505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447014,6 +656527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447092,6 +656608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447111,6 +656630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447162,6 +656684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447181,6 +656706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447259,6 +656787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447278,6 +656809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447329,6 +656863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447348,6 +656885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447426,6 +656966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447445,6 +656988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447496,6 +657042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447515,6 +657064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447593,6 +657145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447612,6 +657167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447663,6 +657221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447682,6 +657243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447760,6 +657324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447779,6 +657346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447830,6 +657400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447849,6 +657422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447927,6 +657503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -447946,6 +657525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -447997,6 +657579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448016,6 +657601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448094,6 +657682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448113,6 +657704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448164,6 +657758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448183,6 +657780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448261,6 +657861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448280,6 +657883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448331,6 +657937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448350,6 +657959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448428,6 +658040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448447,6 +658062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448498,6 +658116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448517,6 +658138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448595,6 +658219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448614,6 +658241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448665,6 +658295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448684,6 +658317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448762,6 +658398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448781,6 +658420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448832,6 +658474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448851,6 +658496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448929,6 +658577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -448948,6 +658599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -448999,6 +658653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449018,6 +658675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449096,6 +658756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449115,6 +658778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449166,6 +658832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449185,6 +658854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449263,6 +658935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449282,6 +658957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449333,6 +659011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449352,6 +659033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449430,6 +659114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449449,6 +659136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449500,6 +659190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449519,6 +659212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449597,6 +659293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449616,6 +659315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449667,6 +659369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449686,6 +659391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449764,6 +659472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449783,6 +659494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449834,6 +659548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449853,6 +659570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -449931,6 +659651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -449950,6 +659673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450001,6 +659727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450020,6 +659749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450098,6 +659830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450117,6 +659852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450168,6 +659906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450187,6 +659928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450265,6 +660009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450284,6 +660031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450335,6 +660085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450354,6 +660107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450432,6 +660188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450451,6 +660210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450502,6 +660264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450521,6 +660286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450599,6 +660367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450618,6 +660389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450669,6 +660443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450688,6 +660465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450766,6 +660546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450785,6 +660568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450836,6 +660622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450855,6 +660644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -450933,6 +660725,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -450952,6 +660747,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451003,6 +660801,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451022,6 +660823,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451100,6 +660904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451119,6 +660926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451170,6 +660980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451189,6 +661002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451267,6 +661083,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451286,6 +661105,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451337,6 +661159,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451356,6 +661181,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451434,6 +661262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451453,6 +661284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451504,6 +661338,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451523,6 +661360,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451601,6 +661441,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451620,6 +661463,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451671,6 +661517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451690,6 +661539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451768,6 +661620,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451787,6 +661642,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451838,6 +661696,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451857,6 +661718,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -451935,6 +661799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -451954,6 +661821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452005,6 +661875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452024,6 +661897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452102,6 +661978,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452121,6 +662000,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452172,6 +662054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452191,6 +662076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452269,6 +662157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452288,6 +662179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452339,6 +662233,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452358,6 +662255,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452436,6 +662336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452455,6 +662358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452506,6 +662412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452525,6 +662434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452603,6 +662515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452622,6 +662537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452673,6 +662591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452692,6 +662613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452770,6 +662694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452789,6 +662716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452840,6 +662770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452859,6 +662792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -452937,6 +662873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -452956,6 +662895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453007,6 +662949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453026,6 +662971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453104,6 +663052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453123,6 +663074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453174,6 +663128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453193,6 +663150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453271,6 +663231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453290,6 +663253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453341,6 +663307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453360,6 +663329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453438,6 +663410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453457,6 +663432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453508,6 +663486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453527,6 +663508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453605,6 +663589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453624,6 +663611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453675,6 +663665,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453694,6 +663687,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453772,6 +663768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453791,6 +663790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453842,6 +663844,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453861,6 +663866,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -453939,6 +663947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -453958,6 +663969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454009,6 +664023,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454028,6 +664045,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454106,6 +664126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454125,6 +664148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454176,6 +664202,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454195,6 +664224,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454273,6 +664305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454292,6 +664327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454343,6 +664381,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454362,6 +664403,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454440,6 +664484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454459,6 +664506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454510,6 +664560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454529,6 +664582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454607,6 +664663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454626,6 +664685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454677,6 +664739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454696,6 +664761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454774,6 +664842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454793,6 +664864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454844,6 +664918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454863,6 +664940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -454941,6 +665021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -454960,6 +665043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455011,6 +665097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455030,6 +665119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455108,6 +665200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455127,6 +665222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455178,6 +665276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455197,6 +665298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455275,6 +665379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455294,6 +665401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455345,6 +665455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455364,6 +665477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455442,6 +665558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455461,6 +665580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455512,6 +665634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455531,6 +665656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455609,6 +665737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455628,6 +665759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455679,6 +665813,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455698,6 +665835,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455776,6 +665916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455795,6 +665938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455846,6 +665992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455865,6 +666014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -455943,6 +666095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -455962,6 +666117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456013,6 +666171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456032,6 +666193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456110,6 +666274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456129,6 +666296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456180,6 +666350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456199,6 +666372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456277,6 +666453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456296,6 +666475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456347,6 +666529,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456366,6 +666551,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456444,6 +666632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456463,6 +666654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456514,6 +666708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456533,6 +666730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456611,6 +666811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456630,6 +666833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456681,6 +666887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456700,6 +666909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456778,6 +666990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456797,6 +667012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456848,6 +667066,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456867,6 +667088,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -456945,6 +667169,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -456964,6 +667191,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457015,6 +667245,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457034,6 +667267,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457112,6 +667348,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457131,6 +667370,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457182,6 +667424,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457201,6 +667446,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457279,6 +667527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457298,6 +667549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457349,6 +667603,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457368,6 +667625,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457446,6 +667706,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457465,6 +667728,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457516,6 +667782,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457535,6 +667804,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457613,6 +667885,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457632,6 +667907,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457683,6 +667961,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457702,6 +667983,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457780,6 +668064,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457799,6 +668086,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457850,6 +668140,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457869,6 +668162,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -457947,6 +668243,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -457966,6 +668265,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458017,6 +668319,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458036,6 +668341,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458114,6 +668422,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458133,6 +668444,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458184,6 +668498,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458203,6 +668520,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458281,6 +668601,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458300,6 +668623,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458351,6 +668677,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458370,6 +668699,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458448,6 +668780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458467,6 +668802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458518,6 +668856,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458537,6 +668878,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458615,6 +668959,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458634,6 +668981,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458685,6 +669035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458704,6 +669057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458782,6 +669138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458801,6 +669160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458852,6 +669214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458871,6 +669236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -458949,6 +669317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -458968,6 +669339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459019,6 +669393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459038,6 +669415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459116,6 +669496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459135,6 +669518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459186,6 +669572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459205,6 +669594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459283,6 +669675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459302,6 +669697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459353,6 +669751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459372,6 +669773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459450,6 +669854,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459469,6 +669876,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459520,6 +669930,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459539,6 +669952,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459617,6 +670033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459636,6 +670055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459687,6 +670109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459706,6 +670131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459784,6 +670212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459803,6 +670234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459854,6 +670288,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459873,6 +670310,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -459951,6 +670391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -459970,6 +670413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460021,6 +670467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460040,6 +670489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460118,6 +670570,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460137,6 +670592,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460188,6 +670646,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460207,6 +670668,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460285,6 +670749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460304,6 +670771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460355,6 +670825,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460374,6 +670847,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460452,6 +670928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460471,6 +670950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460522,6 +671004,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460541,6 +671026,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460619,6 +671107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460638,6 +671129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460689,6 +671183,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460708,6 +671205,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460786,6 +671286,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460805,6 +671308,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460856,6 +671362,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460875,6 +671384,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -460953,6 +671465,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -460972,6 +671487,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461023,6 +671541,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461042,6 +671563,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461120,6 +671644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461139,6 +671666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461190,6 +671720,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461209,6 +671742,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461287,6 +671823,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461306,6 +671845,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461357,6 +671899,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461376,6 +671921,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461454,6 +672002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461473,6 +672024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461524,6 +672078,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461543,6 +672100,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461621,6 +672181,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461640,6 +672203,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461691,6 +672257,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461710,6 +672279,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461788,6 +672360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461807,6 +672382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461858,6 +672436,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461877,6 +672458,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -461955,6 +672539,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -461974,6 +672561,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462025,6 +672615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462044,6 +672637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462122,6 +672718,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462141,6 +672740,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462192,6 +672794,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462211,6 +672816,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462289,6 +672897,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462308,6 +672919,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462359,6 +672973,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462378,6 +672995,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462456,6 +673076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462475,6 +673098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462526,6 +673152,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462545,6 +673174,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462623,6 +673255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462642,6 +673277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462693,6 +673331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462712,6 +673353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462790,6 +673434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462809,6 +673456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462860,6 +673510,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462879,6 +673532,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -462957,6 +673613,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -462976,6 +673635,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463027,6 +673689,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463046,6 +673711,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463124,6 +673792,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463143,6 +673814,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463194,6 +673868,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463213,6 +673890,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463291,6 +673971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463310,6 +673993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463361,6 +674047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463380,6 +674069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463458,6 +674150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463477,6 +674172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463528,6 +674226,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463547,6 +674248,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463625,6 +674329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463644,6 +674351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463695,6 +674405,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463714,6 +674427,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463792,6 +674508,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463811,6 +674530,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463862,6 +674584,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463881,6 +674606,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -463959,6 +674687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -463978,6 +674709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464029,6 +674763,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464048,6 +674785,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464126,6 +674866,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464145,6 +674888,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464196,6 +674942,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464215,6 +674964,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464293,6 +675045,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464312,6 +675067,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464363,6 +675121,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464382,6 +675143,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464460,6 +675224,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464479,6 +675246,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464530,6 +675300,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464549,6 +675322,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464627,6 +675403,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464646,6 +675425,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464697,6 +675479,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464716,6 +675501,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464794,6 +675582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464813,6 +675604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464864,6 +675658,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464883,6 +675680,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -464961,6 +675761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -464980,6 +675783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465031,6 +675837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465050,6 +675859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465128,6 +675940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465147,6 +675962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465198,6 +676016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465217,6 +676038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465295,6 +676119,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465314,6 +676141,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465365,6 +676195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465384,6 +676217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465462,6 +676298,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465481,6 +676320,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465532,6 +676374,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465551,6 +676396,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465629,6 +676477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465648,6 +676499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465699,6 +676553,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465718,6 +676575,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465796,6 +676656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465815,6 +676678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465866,6 +676732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465885,6 +676754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -465963,6 +676835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -465982,6 +676857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466033,6 +676911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466052,6 +676933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466130,6 +677014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466149,6 +677036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466200,6 +677090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466219,6 +677112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466297,6 +677193,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466316,6 +677215,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466367,6 +677269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466386,6 +677291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466464,6 +677372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466483,6 +677394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466534,6 +677448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466553,6 +677470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466631,6 +677551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466650,6 +677573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466701,6 +677627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466720,6 +677649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466798,6 +677730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466817,6 +677752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466868,6 +677806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466887,6 +677828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -466965,6 +677909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -466984,6 +677931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467035,6 +677985,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467054,6 +678007,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467132,6 +678088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467151,6 +678110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467202,6 +678164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467221,6 +678186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467299,6 +678267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467318,6 +678289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467369,6 +678343,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467388,6 +678365,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467466,6 +678446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467485,6 +678468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467536,6 +678522,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467555,6 +678544,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467633,6 +678625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467652,6 +678647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467703,6 +678701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467722,6 +678723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467800,6 +678804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467819,6 +678826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467870,6 +678880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467889,6 +678902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -467967,6 +678983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -467986,6 +679005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468037,6 +679059,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468056,6 +679081,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468134,6 +679162,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468153,6 +679184,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468204,6 +679238,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468223,6 +679260,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468301,6 +679341,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468320,6 +679363,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468371,6 +679417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468390,6 +679439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468468,6 +679520,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468487,6 +679542,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468538,6 +679596,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468557,6 +679618,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468635,6 +679699,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468654,6 +679721,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468705,6 +679775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468724,6 +679797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468802,6 +679878,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468821,6 +679900,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468872,6 +679954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468891,6 +679976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -468969,6 +680057,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -468988,6 +680079,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469039,6 +680133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469058,6 +680155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469136,6 +680236,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469155,6 +680258,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469206,6 +680312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469225,6 +680334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469303,6 +680415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469322,6 +680437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469373,6 +680491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469392,6 +680513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469470,6 +680594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469489,6 +680616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469540,6 +680670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469559,6 +680692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469637,6 +680773,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469656,6 +680795,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469707,6 +680849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469726,6 +680871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469804,6 +680952,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469823,6 +680974,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469874,6 +681028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469893,6 +681050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -469971,6 +681131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -469990,6 +681153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470041,6 +681207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470060,6 +681229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470138,6 +681310,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470157,6 +681332,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470208,6 +681386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470227,6 +681408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470305,6 +681489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470324,6 +681511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470375,6 +681565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470394,6 +681587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470472,6 +681668,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470491,6 +681690,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470542,6 +681744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470561,6 +681766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470639,6 +681847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470658,6 +681869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470709,6 +681923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470728,6 +681945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470806,6 +682026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470825,6 +682048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470876,6 +682102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470895,6 +682124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -470973,6 +682205,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -470992,6 +682227,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471043,6 +682281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471062,6 +682303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471140,6 +682384,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471159,6 +682406,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471210,6 +682460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471229,6 +682482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471307,6 +682563,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471326,6 +682585,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471377,6 +682639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471396,6 +682661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471474,6 +682742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471493,6 +682764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471544,6 +682818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471563,6 +682840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471641,6 +682921,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471660,6 +682943,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471711,6 +682997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471730,6 +683019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471808,6 +683100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471827,6 +683122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471878,6 +683176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471897,6 +683198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -471975,6 +683279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -471994,6 +683301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472045,6 +683355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472064,6 +683377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472142,6 +683458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472161,6 +683480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472212,6 +683534,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472231,6 +683556,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472309,6 +683637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472328,6 +683659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472379,6 +683713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472398,6 +683735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472476,6 +683816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472495,6 +683838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472546,6 +683892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472565,6 +683914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472643,6 +683995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472662,6 +684017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472713,6 +684071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472732,6 +684093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472810,6 +684174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472829,6 +684196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472880,6 +684250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472899,6 +684272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -472977,6 +684353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -472996,6 +684375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473047,6 +684429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473066,6 +684451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473144,6 +684532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473163,6 +684554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473214,6 +684608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473233,6 +684630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473311,6 +684711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473330,6 +684733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473381,6 +684787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473400,6 +684809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473478,6 +684890,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473497,6 +684912,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473548,6 +684966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473567,6 +684988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473645,6 +685069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473664,6 +685091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473715,6 +685145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473734,6 +685167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473812,6 +685248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473831,6 +685270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473882,6 +685324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473901,6 +685346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -473979,6 +685427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -473998,6 +685449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474049,6 +685503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474068,6 +685525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474146,6 +685606,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474165,6 +685628,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474216,6 +685682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474235,6 +685704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474313,6 +685785,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474332,6 +685807,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474383,6 +685861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474402,6 +685883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474480,6 +685964,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474499,6 +685986,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474550,6 +686040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474569,6 +686062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474647,6 +686143,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474666,6 +686165,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474717,6 +686219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474736,6 +686241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474814,6 +686322,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474833,6 +686344,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474884,6 +686398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -474903,6 +686420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -474981,6 +686501,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475000,6 +686523,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475051,6 +686577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475070,6 +686599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475148,6 +686680,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475167,6 +686702,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475218,6 +686756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475237,6 +686778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475315,6 +686859,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475334,6 +686881,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475385,6 +686935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475404,6 +686957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475482,6 +687038,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475501,6 +687060,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475552,6 +687114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475571,6 +687136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475649,6 +687217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475668,6 +687239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475719,6 +687293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475738,6 +687315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475816,6 +687396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475835,6 +687418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475886,6 +687472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -475905,6 +687494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -475983,6 +687575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476002,6 +687597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476053,6 +687651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476072,6 +687673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476150,6 +687754,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476169,6 +687776,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476220,6 +687830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476239,6 +687852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476317,6 +687933,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476336,6 +687955,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476387,6 +688009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476406,6 +688031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476484,6 +688112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476503,6 +688134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476554,6 +688188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476573,6 +688210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476651,6 +688291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476670,6 +688313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476721,6 +688367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476740,6 +688389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476818,6 +688470,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476837,6 +688492,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476888,6 +688546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -476907,6 +688568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -476985,6 +688649,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477004,6 +688671,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477055,6 +688725,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477074,6 +688747,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477152,6 +688828,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477171,6 +688850,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477222,6 +688904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477241,6 +688926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477319,6 +689007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477338,6 +689029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477389,6 +689083,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477408,6 +689105,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477486,6 +689186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477505,6 +689208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477556,6 +689262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477575,6 +689284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477653,6 +689365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477672,6 +689387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477723,6 +689441,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477742,6 +689463,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477820,6 +689544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477839,6 +689566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477890,6 +689620,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -477909,6 +689642,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -477987,6 +689723,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478006,6 +689745,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478057,6 +689799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478076,6 +689821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478154,6 +689902,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478173,6 +689924,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478224,6 +689978,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478243,6 +690000,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478321,6 +690081,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478340,6 +690103,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478391,6 +690157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478410,6 +690179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478488,6 +690260,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478507,6 +690282,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478558,6 +690336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478577,6 +690358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478655,6 +690439,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478674,6 +690461,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478725,6 +690515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478744,6 +690537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478822,6 +690618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478841,6 +690640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478892,6 +690694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -478911,6 +690716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -478989,6 +690797,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479008,6 +690819,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479059,6 +690873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479078,6 +690895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479156,6 +690976,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479175,6 +690998,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479226,6 +691052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479245,6 +691074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479323,6 +691155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479342,6 +691177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479393,6 +691231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479412,6 +691253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479490,6 +691334,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479509,6 +691356,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479560,6 +691410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479579,6 +691432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479657,6 +691513,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479676,6 +691535,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479727,6 +691589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479746,6 +691611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479824,6 +691692,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479843,6 +691714,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479894,6 +691768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -479913,6 +691790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -479991,6 +691871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480010,6 +691893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480061,6 +691947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480080,6 +691969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480158,6 +692050,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480177,6 +692072,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480228,6 +692126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480247,6 +692148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480325,6 +692229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480344,6 +692251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480395,6 +692305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480414,6 +692327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480492,6 +692408,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480511,6 +692430,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480562,6 +692484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480581,6 +692506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480659,6 +692587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480678,6 +692609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480729,6 +692663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480748,6 +692685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480826,6 +692766,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480845,6 +692788,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480896,6 +692842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -480915,6 +692864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -480993,6 +692945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481012,6 +692967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481063,6 +693021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481082,6 +693043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481160,6 +693124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481179,6 +693146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481230,6 +693200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481249,6 +693222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481327,6 +693303,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481346,6 +693325,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481397,6 +693379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481416,6 +693401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481494,6 +693482,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481513,6 +693504,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481564,6 +693558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481583,6 +693580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481661,6 +693661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481680,6 +693683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481731,6 +693737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481750,6 +693759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481828,6 +693840,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481847,6 +693862,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481898,6 +693916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -481917,6 +693938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -481995,6 +694019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482014,6 +694041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482065,6 +694095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482084,6 +694117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482162,6 +694198,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482181,6 +694220,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482232,6 +694274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482251,6 +694296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482329,6 +694377,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482348,6 +694399,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482399,6 +694453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482418,6 +694475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482496,6 +694556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482515,6 +694578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482566,6 +694632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482585,6 +694654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482663,6 +694735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482682,6 +694757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482733,6 +694811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482752,6 +694833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482830,6 +694914,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482849,6 +694936,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482900,6 +694990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -482919,6 +695012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -482997,6 +695093,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483016,6 +695115,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483067,6 +695169,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483086,6 +695191,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483164,6 +695272,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483183,6 +695294,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483234,6 +695348,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483253,6 +695370,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483331,6 +695451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483350,6 +695473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483401,6 +695527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483420,6 +695549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483498,6 +695630,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483517,6 +695652,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483568,6 +695706,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483587,6 +695728,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483665,6 +695809,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483684,6 +695831,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483735,6 +695885,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483754,6 +695907,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483832,6 +695988,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483851,6 +696010,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483902,6 +696064,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -483921,6 +696086,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -483999,6 +696167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484018,6 +696189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484069,6 +696243,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484088,6 +696265,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484166,6 +696346,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484185,6 +696368,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484236,6 +696422,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484255,6 +696444,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484333,6 +696525,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484352,6 +696547,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484403,6 +696601,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484422,6 +696623,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484500,6 +696704,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484519,6 +696726,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484570,6 +696780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484589,6 +696802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484667,6 +696883,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484686,6 +696905,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484737,6 +696959,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484756,6 +696981,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484834,6 +697062,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484853,6 +697084,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -484904,6 +697138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -484923,6 +697160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485001,6 +697241,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485020,6 +697263,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485071,6 +697317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485090,6 +697339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485168,6 +697420,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485187,6 +697442,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485238,6 +697496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485257,6 +697518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485335,6 +697599,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485354,6 +697621,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485405,6 +697675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485424,6 +697697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485502,6 +697778,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485521,6 +697800,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485572,6 +697854,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485591,6 +697876,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485669,6 +697957,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485688,6 +697979,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485739,6 +698033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485758,6 +698055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485836,6 +698136,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485855,6 +698158,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -485906,6 +698212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -485925,6 +698234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486003,6 +698315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486022,6 +698337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486073,6 +698391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486092,6 +698413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486170,6 +698494,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486189,6 +698516,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486240,6 +698570,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486259,6 +698592,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486337,6 +698673,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486356,6 +698695,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486407,6 +698749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486426,6 +698771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486504,6 +698852,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486523,6 +698874,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486574,6 +698928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486593,6 +698950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486671,6 +699031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486690,6 +699053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486741,6 +699107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486760,6 +699129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486838,6 +699210,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486857,6 +699232,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -486908,6 +699286,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -486927,6 +699308,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487005,6 +699389,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487024,6 +699411,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487075,6 +699465,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487094,6 +699487,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487172,6 +699568,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487191,6 +699590,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487242,6 +699644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487261,6 +699666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487339,6 +699747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487358,6 +699769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487409,6 +699823,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487428,6 +699845,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487506,6 +699926,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487525,6 +699948,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487576,6 +700002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487595,6 +700024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487673,6 +700105,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487692,6 +700127,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487743,6 +700181,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487762,6 +700203,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487840,6 +700284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487859,6 +700306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -487910,6 +700360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -487929,6 +700382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488007,6 +700463,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488026,6 +700485,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488077,6 +700539,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488096,6 +700561,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488174,6 +700642,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488193,6 +700664,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488244,6 +700718,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488263,6 +700740,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488341,6 +700821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488360,6 +700843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488411,6 +700897,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488430,6 +700919,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488508,6 +701000,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488527,6 +701022,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488578,6 +701076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488597,6 +701098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488675,6 +701179,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488694,6 +701201,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488745,6 +701255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488764,6 +701277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488842,6 +701358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488861,6 +701380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -488912,6 +701434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -488931,6 +701456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489009,6 +701537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489028,6 +701559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489079,6 +701613,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489098,6 +701635,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489176,6 +701716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489195,6 +701738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489246,6 +701792,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489265,6 +701814,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489343,6 +701895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489362,6 +701917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489413,6 +701971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489432,6 +701993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489510,6 +702074,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489529,6 +702096,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489580,6 +702150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489599,6 +702172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489677,6 +702253,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489696,6 +702275,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489747,6 +702329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489766,6 +702351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489844,6 +702432,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489863,6 +702454,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -489914,6 +702508,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -489933,6 +702530,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490011,6 +702611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490030,6 +702633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490081,6 +702687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490100,6 +702709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490178,6 +702790,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490197,6 +702812,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490248,6 +702866,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490267,6 +702888,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490345,6 +702969,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490364,6 +702991,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490415,6 +703045,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490434,6 +703067,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490512,6 +703148,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490531,6 +703170,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490582,6 +703224,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490601,6 +703246,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490679,6 +703327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490698,6 +703349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490749,6 +703403,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490768,6 +703425,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490846,6 +703506,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490865,6 +703528,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -490916,6 +703582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -490935,6 +703604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491013,6 +703685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491032,6 +703707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491083,6 +703761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491102,6 +703783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491180,6 +703864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491199,6 +703886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491250,6 +703940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491269,6 +703962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491347,6 +704043,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491366,6 +704065,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491417,6 +704119,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491436,6 +704141,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491514,6 +704222,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491533,6 +704244,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491584,6 +704298,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491603,6 +704320,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491681,6 +704401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491700,6 +704423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491751,6 +704477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491770,6 +704499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491848,6 +704580,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491867,6 +704602,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -491918,6 +704656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -491937,6 +704678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492015,6 +704759,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492034,6 +704781,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492085,6 +704835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492104,6 +704857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492182,6 +704938,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492201,6 +704960,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492252,6 +705014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492271,6 +705036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492349,6 +705117,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492368,6 +705139,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492419,6 +705193,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492438,6 +705215,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492516,6 +705296,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492535,6 +705318,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492586,6 +705372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492605,6 +705394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492683,6 +705475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492702,6 +705497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492753,6 +705551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492772,6 +705573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492850,6 +705654,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492869,6 +705676,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -492920,6 +705730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -492939,6 +705752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493017,6 +705833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493036,6 +705855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493087,6 +705909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493106,6 +705931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493184,6 +706012,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493203,6 +706034,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493254,6 +706088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493273,6 +706110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493351,6 +706191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493370,6 +706213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493421,6 +706267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493440,6 +706289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493518,6 +706370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493537,6 +706392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493588,6 +706446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493607,6 +706468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493685,6 +706549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493704,6 +706571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493755,6 +706625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493774,6 +706647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493852,6 +706728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493871,6 +706750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -493922,6 +706804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -493941,6 +706826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494019,6 +706907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494038,6 +706929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494089,6 +706983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494108,6 +707005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494186,6 +707086,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494205,6 +707108,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494256,6 +707162,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494275,6 +707184,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494353,6 +707265,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494372,6 +707287,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494423,6 +707341,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494442,6 +707363,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494520,6 +707444,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494539,6 +707466,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494590,6 +707520,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494609,6 +707542,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494687,6 +707623,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494706,6 +707645,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494757,6 +707699,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494776,6 +707721,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494854,6 +707802,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494873,6 +707824,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -494924,6 +707878,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -494943,6 +707900,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495021,6 +707981,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495040,6 +708003,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495091,6 +708057,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495110,6 +708079,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495188,6 +708160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495207,6 +708182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495258,6 +708236,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495277,6 +708258,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495355,6 +708339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495374,6 +708361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495425,6 +708415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495444,6 +708437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495522,6 +708518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495541,6 +708540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495592,6 +708594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495611,6 +708616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495689,6 +708697,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495708,6 +708719,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495759,6 +708773,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495778,6 +708795,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495856,6 +708876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495875,6 +708898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -495926,6 +708952,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -495945,6 +708974,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496023,6 +709055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496042,6 +709077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496093,6 +709131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496112,6 +709153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496190,6 +709234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496209,6 +709256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496260,6 +709310,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496279,6 +709332,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496357,6 +709413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496376,6 +709435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496427,6 +709489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496446,6 +709511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496524,6 +709592,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496543,6 +709614,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496594,6 +709668,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496613,6 +709690,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496691,6 +709771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496710,6 +709793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496761,6 +709847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496780,6 +709869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496858,6 +709950,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496877,6 +709972,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -496928,6 +710026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -496947,6 +710048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497025,6 +710129,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497044,6 +710151,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497095,6 +710205,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497114,6 +710227,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497192,6 +710308,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497211,6 +710330,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497262,6 +710384,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497281,6 +710406,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497359,6 +710487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497378,6 +710509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497429,6 +710563,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497448,6 +710585,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497526,6 +710666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497545,6 +710688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497596,6 +710742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497615,6 +710764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497693,6 +710845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497712,6 +710867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497763,6 +710921,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497782,6 +710943,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497860,6 +711024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497879,6 +711046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -497930,6 +711100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -497949,6 +711122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498027,6 +711203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498046,6 +711225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498097,6 +711279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498116,6 +711301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498194,6 +711382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498213,6 +711404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498264,6 +711458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498283,6 +711480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498361,6 +711561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498380,6 +711583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498431,6 +711637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498450,6 +711659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498528,6 +711740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498547,6 +711762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498598,6 +711816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498617,6 +711838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498695,6 +711919,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498714,6 +711941,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498765,6 +711995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498784,6 +712017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498862,6 +712098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498881,6 +712120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -498932,6 +712174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -498951,6 +712196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -499029,6 +712277,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -499048,6 +712299,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -499099,6 +712353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -499118,6 +712375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -499196,6 +712456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -499215,6 +712478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -499266,6 +712532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -499285,6 +712554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -499363,6 +712635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -499382,6 +712657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -499433,6 +712711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -499452,6 +712733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -499619,6 +712903,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 777280910} m_CullTransparentMesh: 0 +--- !u!1 &779803717 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 779803718} + - component: {fileID: 779803720} + - component: {fileID: 779803719} + m_Layer: 0 + m_Name: axis_x15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &779803718 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 779803717} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1813797943} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 990.8, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &779803719 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 779803717} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &779803720 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 779803717} + m_CullTransparentMesh: 0 --- !u!1 &779817903 GameObject: m_ObjectHideFlags: 0 @@ -500046,6 +713408,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 781707777} m_CullTransparentMesh: 0 +--- !u!1 &781828722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 781828723} + - component: {fileID: 781828725} + - component: {fileID: 781828724} + m_Layer: 0 + m_Name: axis_x12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &781828723 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 781828722} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 264878278} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 520.4, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &781828724 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 781828722} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x3 +--- !u!222 &781828725 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 781828722} + m_CullTransparentMesh: 0 --- !u!1 &781962789 GameObject: m_ObjectHideFlags: 0 @@ -500325,6 +713765,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Serie Label @@ -500358,6 +713804,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -500396,6 +713843,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -501131,6 +714579,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -501324,6 +714773,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -501343,6 +714795,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -501393,6 +714848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -501412,6 +714870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -501501,6 +714962,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -501520,6 +714984,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -501571,6 +715038,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -501590,6 +715060,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -501668,6 +715141,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -501687,6 +715163,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -501738,6 +715217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -501757,6 +715239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -501835,6 +715320,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -501854,6 +715342,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -501905,6 +715396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -501924,6 +715418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -502002,6 +715499,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -502021,6 +715521,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -502072,6 +715575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -502091,6 +715597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -502169,6 +715678,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -502188,6 +715700,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -502239,6 +715754,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -502258,6 +715776,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -502336,6 +715857,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -502355,6 +715879,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -502406,6 +715933,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -502425,6 +715955,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -502503,6 +716036,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -502522,6 +716058,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -502573,6 +716112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -502592,6 +716134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -503557,6 +717102,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 0 m_PieSelectedOffset: 0 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &786101834 GameObject: m_ObjectHideFlags: 0 @@ -503828,6 +717386,70 @@ RectTransform: m_AnchoredPosition: {x: -287.33334, y: 143.66667} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &786790125 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 786790126} + - component: {fileID: 786790128} + - component: {fileID: 786790127} + m_Layer: 0 + m_Name: painter_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &786790126 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 786790125} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &786790127 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 786790125} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &786790128 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 786790125} + m_CullTransparentMesh: 0 --- !u!1 &786878246 GameObject: m_ObjectHideFlags: 0 @@ -505567,6 +719189,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 795113958} m_CullTransparentMesh: 0 +--- !u!1 &795435014 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 795435015} + - component: {fileID: 795435017} + - component: {fileID: 795435016} + m_Layer: 0 + m_Name: axis_y13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &795435015 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 795435014} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 136043331} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 241.20001} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &795435016 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 795435014} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &795435017 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 795435014} + m_CullTransparentMesh: 0 --- !u!1 &795770213 GameObject: m_ObjectHideFlags: 0 @@ -506801,6 +720501,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &800037208 GameObject: m_ObjectHideFlags: 0 @@ -507241,6 +720954,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 801136471} m_CullTransparentMesh: 0 +--- !u!1 &801904825 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 801904826} + m_Layer: 0 + m_Name: axis_y + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &801904826 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801904825} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 25569590} + - {fileID: 1783916916} + - {fileID: 1257441141} + - {fileID: 397072586} + - {fileID: 1765351949} + - {fileID: 2145814540} + m_Father: {fileID: 1070880691} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &802200501 GameObject: m_ObjectHideFlags: 0 @@ -508427,6 +722181,81 @@ RectTransform: m_AnchoredPosition: {x: -287.33334, y: 143.66667} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &810583008 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 810583009} + - component: {fileID: 810583011} + - component: {fileID: 810583010} + m_Layer: 0 + m_Name: axis_x1_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &810583009 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810583008} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 36918016} + m_Father: {fileID: 344721546} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &810583010 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810583008} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &810583011 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810583008} + m_CullTransparentMesh: 0 --- !u!114 &811601351 MonoBehaviour: m_ObjectHideFlags: 0 @@ -508732,6 +722561,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &811690975 GameObject: m_ObjectHideFlags: 1 @@ -509511,6 +723353,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &814906225 MonoBehaviour: m_ObjectHideFlags: 0 @@ -511656,6 +725610,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 825416430} m_CullTransparentMesh: 0 +--- !u!1 &826122619 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 826122620} + - component: {fileID: 826122622} + - component: {fileID: 826122621} + m_Layer: 0 + m_Name: title_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &826122620 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826122619} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1293982805} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -21.600006} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &826122621 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826122619} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &826122622 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 826122619} + m_CullTransparentMesh: 0 --- !u!1 &826376036 GameObject: m_ObjectHideFlags: 0 @@ -513695,6 +727727,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &833932497 GameObject: m_ObjectHideFlags: 1 @@ -515224,6 +729269,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &843567743 GameObject: m_ObjectHideFlags: 0 @@ -516675,6 +730733,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &850711252 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 850711253} + m_Layer: 0 + m_Name: datazoom1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &850711253 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 850711252} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 607839955} + - {fileID: 67945512} + m_Father: {fileID: 472702066} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &850963186 GameObject: m_ObjectHideFlags: 0 @@ -516906,6 +731001,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 853830195} m_CullTransparentMesh: 0 +--- !u!1 &853836622 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 853836623} + - component: {fileID: 853836625} + - component: {fileID: 853836624} + m_Layer: 0 + m_Name: painter_9 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &853836623 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 853836622} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &853836624 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 853836622} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &853836625 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 853836622} + m_CullTransparentMesh: 0 --- !u!1 &854047264 GameObject: m_ObjectHideFlags: 0 @@ -517272,6 +731431,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 856527913} m_CullTransparentMesh: 0 +--- !u!1 &856576779 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 856576780} + - component: {fileID: 856576782} + - component: {fileID: 856576781} + m_Layer: 0 + m_Name: painter_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &856576780 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 856576779} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &856576781 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 856576779} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &856576782 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 856576779} + m_CullTransparentMesh: 0 --- !u!1 &856904681 GameObject: m_ObjectHideFlags: 0 @@ -518581,6 +732804,144 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &867274967 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 867274968} + - component: {fileID: 867274970} + - component: {fileID: 867274969} + m_Layer: 0 + m_Name: painter_8 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &867274968 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867274967} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &867274969 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867274967} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &867274970 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867274967} + m_CullTransparentMesh: 0 +--- !u!1 &867979965 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 867979966} + - component: {fileID: 867979968} + - component: {fileID: 867979967} + m_Layer: 0 + m_Name: background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &867979966 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867979965} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &867979967 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867979965} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &867979968 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 867979965} + m_CullTransparentMesh: 0 --- !u!114 &868438617 MonoBehaviour: m_ObjectHideFlags: 0 @@ -518886,6 +733247,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!114 &868597630 MonoBehaviour: m_ObjectHideFlags: 0 @@ -519191,6 +733565,337 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 +--- !u!114 &868909959 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6f28c6b3fb24d49afbe348cfadd0e1c7, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Theme: 0 + m_ThemeName: Default + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_ContrastColor: + serializedVersion: 2 + rgba: 4283256145 + m_BackgroundColor: + serializedVersion: 2 + rgba: 4294967295 + m_ColorPalette: + - serializedVersion: 2 + rgba: 4281415106 + - serializedVersion: 2 + rgba: 4283712815 + - serializedVersion: 2 + rgba: 4289241185 + - serializedVersion: 2 + rgba: 4284842708 + - serializedVersion: 2 + rgba: 4289644433 + - serializedVersion: 2 + rgba: 4286816116 + - serializedVersion: 2 + rgba: 4280452810 + - serializedVersion: 2 + rgba: 4288324285 + - serializedVersion: 2 + rgba: 4285821038 + - serializedVersion: 2 + rgba: 4285556052 + - serializedVersion: 2 + rgba: 4292070596 + m_Common: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 20 + m_Title: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 24 + m_SubTitle: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 22 + m_Legend: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 20 + m_UnableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} + m_Axis: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_RadiusAxis: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_AngleAxis: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_Polar: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_Gauge: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 15 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 15 + m_SplitLineColor: + serializedVersion: 2 + rgba: 4294967295 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4294967295 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 1308293882 + - serializedVersion: 2 + rgba: 1305004232 + m_BarBackgroundColor: + serializedVersion: 2 + rgba: 4291348680 + m_StageColor: + - m_Percent: 0.2 + m_Color: + serializedVersion: 2 + rgba: 4289644433 + - m_Percent: 0.8 + m_Color: + serializedVersion: 2 + rgba: 4288579171 + - m_Percent: 1 + m_Color: + serializedVersion: 2 + rgba: 4281415106 + m_Radar: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineLength: 0 + m_LineColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitLineType: 0 + m_SplitLineWidth: 0.8 + m_SplitLineLength: 0 + m_SplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TickWidth: 0.8 + m_TickLength: 5 + m_TickColor: + serializedVersion: 2 + rgba: 4283256145 + m_SplitAreaColors: + - serializedVersion: 2 + rgba: 4294375158 + - serializedVersion: 2 + rgba: 4293388263 + m_Tooltip: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 1, g: 1, b: 1, a: 1} + m_TextBackgroundColor: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + m_FontSize: 20 + m_LineType: 0 + m_LineWidth: 0.8 + m_LineColor: + serializedVersion: 2 + rgba: 1680419113 + m_AreaColor: + serializedVersion: 2 + rgba: 542200145 + m_LabelTextColor: + serializedVersion: 2 + rgba: 4294967295 + m_LabelBackgroundColor: + serializedVersion: 2 + rgba: 4280887593 + m_DataZoom: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 20 + m_BorderWidth: 0.5 + m_DataLineWidth: 0.5 + m_FillerColor: + serializedVersion: 2 + rgba: 1858910119 + m_BorderColor: + serializedVersion: 2 + rgba: 4292730333 + m_DataLineColor: + serializedVersion: 2 + rgba: 4283712815 + m_DataAreaColor: + serializedVersion: 2 + rgba: 1431586095 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_VisualMap: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_TextColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_TextBackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 4291611852 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_TriangeLen: 20 + m_Serie: + m_LineWidth: 1.4 + m_LineSymbolSize: 4 + m_LineSymbolSelectedSize: 8 + m_ScatterSymbolSize: 20 + m_ScatterSymbolSelectedSize: 30 + m_PieTooltipExtraRadius: 8 + m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 4281415106 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 4283844145 + m_CandlestickBorderWidth: 1 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 4281415106 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 4283844145 --- !u!1 &869264050 GameObject: m_ObjectHideFlags: 1 @@ -520816,6 +735521,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 878027531} m_CullTransparentMesh: 0 +--- !u!1 &878109527 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 878109528} + - component: {fileID: 878109530} + - component: {fileID: 878109529} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &878109528 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878109527} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1248113496} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 3, y: -3} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &878109529 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878109527} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &878109530 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878109527} + m_CullTransparentMesh: 0 --- !u!1 &878357626 GameObject: m_ObjectHideFlags: 0 @@ -520874,6 +735657,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &878357629 MonoBehaviour: m_ObjectHideFlags: 0 @@ -521513,6 +736408,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 881008178} m_CullTransparentMesh: 0 +--- !u!1 &881259821 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 881259822} + - component: {fileID: 881259824} + - component: {fileID: 881259823} + m_Layer: 0 + m_Name: axis_y15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &881259822 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 881259821} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1889259906} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 382} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &881259823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 881259821} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &881259824 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 881259821} + m_CullTransparentMesh: 0 --- !u!1 &881522060 GameObject: m_ObjectHideFlags: 0 @@ -521587,6 +736560,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 881522060} m_CullTransparentMesh: 0 +--- !u!1 &881688453 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 881688454} + - component: {fileID: 881688456} + - component: {fileID: 881688455} + m_Layer: 0 + m_Name: axis_y14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &881688454 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 881688453} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 136043331} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 311.6} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &881688455 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 881688453} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &881688456 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 881688453} + m_CullTransparentMesh: 0 --- !u!1 &882063466 GameObject: m_ObjectHideFlags: 1 @@ -521944,6 +736995,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Value Axes @@ -521977,6 +737034,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -522015,6 +737073,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -522748,6 +737807,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -522941,6 +738001,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -522960,6 +738023,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -523010,6 +738076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -523029,6 +738098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -523118,6 +738190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -523137,6 +738212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -523188,6 +738266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -523207,6 +738288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -523285,6 +738369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -523304,6 +738391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -523355,6 +738445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -523374,6 +738467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -523452,6 +738548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -523471,6 +738570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -523522,6 +738624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -523541,6 +738646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -524465,6 +739573,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 889079534} m_CullTransparentMesh: 0 +--- !u!1 &889095323 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 889095324} + m_Layer: 0 + m_Name: datazoom1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &889095324 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889095323} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 433934551} + - {fileID: 1080384920} + m_Father: {fileID: 1070880691} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &889276677 GameObject: m_ObjectHideFlags: 0 @@ -526130,6 +741275,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -526163,6 +741314,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -526201,6 +741353,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -526428,6 +741581,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 1 m_RingGap: 10 @@ -526621,6 +741775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -526640,6 +741797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -526690,6 +741850,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -526709,6 +741872,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -526798,6 +741964,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -526817,6 +741986,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -526868,6 +742040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -526887,6 +742062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -526966,6 +742144,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -526985,6 +742166,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -527036,6 +742220,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -527055,6 +742242,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -527134,6 +742324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -527153,6 +742346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -527204,6 +742400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -527223,6 +742422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -529791,6 +744993,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &913575239 GameObject: m_ObjectHideFlags: 0 @@ -530703,6 +745918,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &917266325 GameObject: m_ObjectHideFlags: 0 @@ -532390,6 +747618,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -532423,6 +747657,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -532461,6 +747696,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -532831,6 +748067,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -533024,6 +748261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -533043,6 +748283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -533093,6 +748336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -533112,6 +748358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -533201,6 +748450,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -533220,6 +748472,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -533271,6 +748526,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -533290,6 +748548,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -533373,6 +748634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -533392,6 +748656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -533443,6 +748710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -533462,6 +748732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -534199,6 +749472,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Step LineChart @@ -534232,6 +749511,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -534270,6 +749550,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -535005,6 +750286,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -535198,6 +750480,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535217,6 +750502,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535267,6 +750555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535286,6 +750577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535375,6 +750669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535394,6 +750691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535445,6 +750745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535464,6 +750767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535542,6 +750848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535561,6 +750870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535612,6 +750924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535631,6 +750946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535709,6 +751027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535728,6 +751049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535779,6 +751103,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535798,6 +751125,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535876,6 +751206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535895,6 +751228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -535946,6 +751282,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -535965,6 +751304,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536043,6 +751385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536062,6 +751407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536113,6 +751461,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536132,6 +751483,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536210,6 +751564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536229,6 +751586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536280,6 +751640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536299,6 +751662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536377,6 +751743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536396,6 +751765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536447,6 +751819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536466,6 +751841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536563,6 +751941,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -536756,6 +752135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536775,6 +752157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536825,6 +752210,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536844,6 +752232,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -536933,6 +752324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -536952,6 +752346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537003,6 +752400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537022,6 +752422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537100,6 +752503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537119,6 +752525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537170,6 +752579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537189,6 +752601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537267,6 +752682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537286,6 +752704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537337,6 +752758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537356,6 +752780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537434,6 +752861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537453,6 +752883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537504,6 +752937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537523,6 +752959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537601,6 +753040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537620,6 +753062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537671,6 +753116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537690,6 +753138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537768,6 +753219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537787,6 +753241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537838,6 +753295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537857,6 +753317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -537935,6 +753398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -537954,6 +753420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538005,6 +753474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538024,6 +753496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538121,6 +753596,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -538314,6 +753790,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538333,6 +753812,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538383,6 +753865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538402,6 +753887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538491,6 +753979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538510,6 +754001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538561,6 +754055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538580,6 +754077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538658,6 +754158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538677,6 +754180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538728,6 +754234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538747,6 +754256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538825,6 +754337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538844,6 +754359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538895,6 +754413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -538914,6 +754435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -538992,6 +754516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -539011,6 +754538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -539062,6 +754592,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -539081,6 +754614,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -539159,6 +754695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -539178,6 +754717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -539229,6 +754771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -539248,6 +754793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -539326,6 +754874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -539345,6 +754896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -539396,6 +754950,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -539415,6 +754972,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -539493,6 +755053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -539512,6 +755075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -539563,6 +755129,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -539582,6 +755151,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -541322,6 +756894,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: In Same Bar @@ -541355,6 +756933,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -541393,6 +756972,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -542126,6 +757706,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -542319,6 +757900,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -542338,6 +757922,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -542388,6 +757975,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -542407,6 +757997,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -542496,6 +758089,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -542515,6 +758111,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -542566,6 +758165,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -542585,6 +758187,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -542663,6 +758268,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -542682,6 +758290,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -542733,6 +758344,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -542752,6 +758366,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -542830,6 +758447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -542849,6 +758469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -542900,6 +758523,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -542919,6 +758545,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -542997,6 +758626,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543016,6 +758648,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543067,6 +758702,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543086,6 +758724,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543164,6 +758805,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543183,6 +758827,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543234,6 +758881,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543253,6 +758903,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543331,6 +758984,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543350,6 +759006,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543401,6 +759060,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543420,6 +759082,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543498,6 +759163,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543517,6 +759185,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543568,6 +759239,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543587,6 +759261,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543684,6 +759361,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -543877,6 +759555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543896,6 +759577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -543946,6 +759630,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -543965,6 +759652,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544054,6 +759744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544073,6 +759766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544124,6 +759820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544143,6 +759842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544221,6 +759923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544240,6 +759945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544291,6 +759999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544310,6 +760021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544388,6 +760102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544407,6 +760124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544458,6 +760178,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544477,6 +760200,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544555,6 +760281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544574,6 +760303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544625,6 +760357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544644,6 +760379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544722,6 +760460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544741,6 +760482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544792,6 +760536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544811,6 +760558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544889,6 +760639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544908,6 +760661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -544959,6 +760715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -544978,6 +760737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -545056,6 +760818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -545075,6 +760840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -545126,6 +760894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -545145,6 +760916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -546161,6 +761935,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 0 m_PieSelectedOffset: 0 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &942095345 GameObject: m_ObjectHideFlags: 0 @@ -547707,6 +763494,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Background & Gradient @@ -547740,6 +763533,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -547778,6 +763572,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -548513,6 +764308,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -548706,6 +764502,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 3505253862 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -548725,6 +764524,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -548775,6 +764577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -548794,6 +764599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -548883,6 +764691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -548902,6 +764713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -548953,6 +764767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -548972,6 +764789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549050,6 +764870,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549069,6 +764892,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549120,6 +764946,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549139,6 +764968,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549217,6 +765049,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549236,6 +765071,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549287,6 +765125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549306,6 +765147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549384,6 +765228,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549403,6 +765250,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549454,6 +765304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549473,6 +765326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549551,6 +765407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549570,6 +765429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549621,6 +765483,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549640,6 +765505,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549718,6 +765586,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549737,6 +765608,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549788,6 +765662,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549807,6 +765684,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549885,6 +765765,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549904,6 +765787,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -549955,6 +765841,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -549974,6 +765863,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550071,6 +765963,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -550264,6 +766157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 3338362640 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 2447632968 @@ -550283,6 +766179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550333,6 +766232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -550352,6 +766254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550441,6 +766346,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -550460,6 +766368,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550511,6 +766422,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -550530,6 +766444,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550608,6 +766525,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -550627,6 +766547,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550678,6 +766601,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -550697,6 +766623,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550775,6 +766704,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -550794,6 +766726,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550845,6 +766780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -550864,6 +766802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -550942,6 +766883,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -550961,6 +766905,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -551012,6 +766959,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -551031,6 +766981,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -551109,6 +767062,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -551128,6 +767084,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -551179,6 +767138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -551198,6 +767160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -551276,6 +767241,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -551295,6 +767263,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -551346,6 +767317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -551365,6 +767339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -551443,6 +767420,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -551462,6 +767442,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -551513,6 +767496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -551532,6 +767518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -552616,6 +768605,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &950789695 GameObject: m_ObjectHideFlags: 0 @@ -554675,6 +770677,162 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 958770788} m_CullTransparentMesh: 0 +--- !u!1 &959257128 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 959257129} + - component: {fileID: 959257131} + - component: {fileID: 959257130} + m_Layer: 0 + m_Name: axis_y11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &959257129 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959257128} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1889259906} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 132.4} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &959257130 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959257128} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &959257131 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959257128} + m_CullTransparentMesh: 0 +--- !u!1 &959435109 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 959435110} + - component: {fileID: 959435112} + - component: {fileID: 959435111} + m_Layer: 0 + m_Name: axis_x5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &959435110 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959435109} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1522821510} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 990.8, y: -419} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &959435111 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959435109} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &959435112 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959435109} + m_CullTransparentMesh: 0 --- !u!1 &959447562 GameObject: m_ObjectHideFlags: 1 @@ -554776,6 +770934,148 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &959673522 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 959673523} + - component: {fileID: 959673525} + - component: {fileID: 959673524} + m_Layer: 0 + m_Name: axis_y4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &959673523 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959673522} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1794954420} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 311.6} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &959673524 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959673522} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 40 +--- !u!222 &959673525 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959673522} + m_CullTransparentMesh: 0 +--- !u!1 &959828632 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 959828633} + - component: {fileID: 959828635} + - component: {fileID: 959828634} + m_Layer: 0 + m_Name: painter_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &959828633 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959828632} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &959828634 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959828632} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &959828635 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 959828632} + m_CullTransparentMesh: 0 --- !u!1 &960027150 GameObject: m_ObjectHideFlags: 0 @@ -556004,6 +772304,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Border & Gradient @@ -556037,6 +772343,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -556075,6 +772382,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -556302,6 +772610,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -556495,6 +772804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -556514,6 +772826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 2734686208 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.81 m_TooltipFormatter: m_NumericFormatter: @@ -556564,6 +772879,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -556583,6 +772901,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -556672,6 +772993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 4281890000 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 3204448255 @@ -556691,6 +773015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 4289942366 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.62 m_TooltipFormatter: m_NumericFormatter: @@ -556742,6 +773069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -556761,6 +773091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -556839,6 +773172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 3330792242 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 3204448255 @@ -556858,6 +773194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 3552304945 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.52 m_TooltipFormatter: m_NumericFormatter: @@ -556909,6 +773248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -556928,6 +773270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -557006,6 +773351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 3387736349 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 3204448255 @@ -557025,6 +773373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 3592472767 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.57 m_TooltipFormatter: m_NumericFormatter: @@ -557076,6 +773427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -557095,6 +773449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -557281,6 +773638,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 963950277} m_CullTransparentMesh: 0 +--- !u!1 &965001764 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 965001765} + - component: {fileID: 965001767} + - component: {fileID: 965001766} + m_Layer: 0 + m_Name: painter_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &965001765 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 965001764} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &965001766 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 965001764} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &965001767 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 965001764} + m_CullTransparentMesh: 0 --- !u!1 &965523783 GameObject: m_ObjectHideFlags: 1 @@ -557877,6 +774298,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 968447468} m_CullTransparentMesh: 0 +--- !u!1 &968695193 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 968695194} + - component: {fileID: 968695196} + - component: {fileID: 968695195} + m_Layer: 0 + m_Name: painter_t + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &968695194 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 968695193} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &968695195 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 968695193} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &968695196 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 968695193} + m_CullTransparentMesh: 0 --- !u!1 &968922084 GameObject: m_ObjectHideFlags: 1 @@ -558931,6 +775416,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &973558298 GameObject: m_ObjectHideFlags: 0 @@ -559155,6 +775653,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 973984445} m_CullTransparentMesh: 0 +--- !u!1 &974011155 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 974011156} + - component: {fileID: 974011158} + - component: {fileID: 974011157} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &974011156 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 974011155} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1841565855} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &974011157 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 974011155} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &974011158 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 974011155} + m_CullTransparentMesh: 0 --- !u!1 &974201194 GameObject: m_ObjectHideFlags: 0 @@ -560086,6 +776662,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 979430946} m_CullTransparentMesh: 0 +--- !u!1 &979457390 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 979457391} + - component: {fileID: 979457393} + - component: {fileID: 979457392} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &979457391 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 979457390} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2126879549} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &979457392 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 979457390} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &979457393 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 979457390} + m_CullTransparentMesh: 0 --- !u!1 &979684564 GameObject: m_ObjectHideFlags: 0 @@ -562018,6 +778672,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: HeatmapChart @@ -562051,6 +778711,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -562089,6 +778750,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -562906,6 +779568,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -563099,6 +779762,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563118,6 +779784,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563168,6 +779837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563187,6 +779859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 4278190080 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563276,6 +779951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563295,6 +779973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563346,6 +780027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563365,6 +780049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563444,6 +780131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563463,6 +780153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563514,6 +780207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563533,6 +780229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563612,6 +780311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563631,6 +780333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563682,6 +780387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563701,6 +780409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563780,6 +780491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563799,6 +780513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563850,6 +780567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563869,6 +780589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -563948,6 +780671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -563967,6 +780693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564018,6 +780747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564037,6 +780769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564116,6 +780851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564135,6 +780873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564186,6 +780927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564205,6 +780949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564284,6 +781031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564303,6 +781053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564354,6 +781107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564373,6 +781129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564452,6 +781211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564471,6 +781233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564522,6 +781287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564541,6 +781309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564620,6 +781391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564639,6 +781413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564690,6 +781467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564709,6 +781489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564788,6 +781571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564807,6 +781593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564858,6 +781647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564877,6 +781669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -564956,6 +781751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -564975,6 +781773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565026,6 +781827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565045,6 +781849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565124,6 +781931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565143,6 +781953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565194,6 +782007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565213,6 +782029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565292,6 +782111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565311,6 +782133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565362,6 +782187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565381,6 +782209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565460,6 +782291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565479,6 +782313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565530,6 +782367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565549,6 +782389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565628,6 +782471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565647,6 +782493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565698,6 +782547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565717,6 +782569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565796,6 +782651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565815,6 +782673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565866,6 +782727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565885,6 +782749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -565964,6 +782831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -565983,6 +782853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566034,6 +782907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566053,6 +782929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566132,6 +783011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566151,6 +783033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566202,6 +783087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566221,6 +783109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566300,6 +783191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566319,6 +783213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566370,6 +783267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566389,6 +783289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566468,6 +783371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566487,6 +783393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566538,6 +783447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566557,6 +783469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566636,6 +783551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566655,6 +783573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566706,6 +783627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566725,6 +783649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566804,6 +783731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566823,6 +783753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566874,6 +783807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566893,6 +783829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -566972,6 +783911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -566991,6 +783933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567042,6 +783987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567061,6 +784009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567140,6 +784091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567159,6 +784113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567210,6 +784167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567229,6 +784189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567308,6 +784271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567327,6 +784293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567378,6 +784347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567397,6 +784369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567476,6 +784451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567495,6 +784473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567546,6 +784527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567565,6 +784549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567644,6 +784631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567663,6 +784653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567714,6 +784707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567733,6 +784729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567812,6 +784811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567831,6 +784833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567882,6 +784887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567901,6 +784909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -567980,6 +784991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -567999,6 +785013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568050,6 +785067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568069,6 +785089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568148,6 +785171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568167,6 +785193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568218,6 +785247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568237,6 +785269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568316,6 +785351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568335,6 +785373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568386,6 +785427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568405,6 +785449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568484,6 +785531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568503,6 +785553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568554,6 +785607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568573,6 +785629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568652,6 +785711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568671,6 +785733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568722,6 +785787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568741,6 +785809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568820,6 +785891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568839,6 +785913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568890,6 +785967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -568909,6 +785989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -568988,6 +786071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569007,6 +786093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569058,6 +786147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569077,6 +786169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569156,6 +786251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569175,6 +786273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569226,6 +786327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569245,6 +786349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569324,6 +786431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569343,6 +786453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569394,6 +786507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569413,6 +786529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569492,6 +786611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569511,6 +786633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569562,6 +786687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569581,6 +786709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569660,6 +786791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569679,6 +786813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569730,6 +786867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569749,6 +786889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569828,6 +786971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569847,6 +786993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569898,6 +787047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -569917,6 +787069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -569996,6 +787151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570015,6 +787173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570066,6 +787227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570085,6 +787249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570164,6 +787331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570183,6 +787353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570234,6 +787407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570253,6 +787429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570332,6 +787511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570351,6 +787533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570402,6 +787587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570421,6 +787609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570500,6 +787691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570519,6 +787713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570570,6 +787767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570589,6 +787789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570668,6 +787871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570687,6 +787893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570738,6 +787947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570757,6 +787969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570836,6 +788051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570855,6 +788073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -570906,6 +788127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -570925,6 +788149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571004,6 +788231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571023,6 +788253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571074,6 +788307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571093,6 +788329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571172,6 +788411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571191,6 +788433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571242,6 +788487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571261,6 +788509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571340,6 +788591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571359,6 +788613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571410,6 +788667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571429,6 +788689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571508,6 +788771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571527,6 +788793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571578,6 +788847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571597,6 +788869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571676,6 +788951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571695,6 +788973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571746,6 +789027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571765,6 +789049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571844,6 +789131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571863,6 +789153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -571914,6 +789207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -571933,6 +789229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572012,6 +789311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572031,6 +789333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572082,6 +789387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572101,6 +789409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572180,6 +789491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572199,6 +789513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572250,6 +789567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572269,6 +789589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572348,6 +789671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572367,6 +789693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572418,6 +789747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572437,6 +789769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572516,6 +789851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572535,6 +789873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572586,6 +789927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572605,6 +789949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572684,6 +790031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572703,6 +790053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572754,6 +790107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572773,6 +790129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572852,6 +790211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572871,6 +790233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -572922,6 +790287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -572941,6 +790309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573020,6 +790391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573039,6 +790413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573090,6 +790467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573109,6 +790489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573188,6 +790571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573207,6 +790593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573258,6 +790647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573277,6 +790669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573356,6 +790751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573375,6 +790773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573426,6 +790827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573445,6 +790849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573524,6 +790931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573543,6 +790953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573594,6 +791007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573613,6 +791029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573692,6 +791111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573711,6 +791133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573762,6 +791187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573781,6 +791209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573860,6 +791291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573879,6 +791313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -573930,6 +791367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -573949,6 +791389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574028,6 +791471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574047,6 +791493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574098,6 +791547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574117,6 +791569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574196,6 +791651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574215,6 +791673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574266,6 +791727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574285,6 +791749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574364,6 +791831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574383,6 +791853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574434,6 +791907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574453,6 +791929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574532,6 +792011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574551,6 +792033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574602,6 +792087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574621,6 +792109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574700,6 +792191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574719,6 +792213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574770,6 +792267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574789,6 +792289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574868,6 +792371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574887,6 +792393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -574938,6 +792447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -574957,6 +792469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575036,6 +792551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575055,6 +792573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575106,6 +792627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575125,6 +792649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575204,6 +792731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575223,6 +792753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575274,6 +792807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575293,6 +792829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575372,6 +792911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575391,6 +792933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575442,6 +792987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575461,6 +793009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575540,6 +793091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575559,6 +793113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575610,6 +793167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575629,6 +793189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575708,6 +793271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575727,6 +793293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575778,6 +793347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575797,6 +793369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575876,6 +793451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575895,6 +793473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -575946,6 +793527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -575965,6 +793549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576044,6 +793631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576063,6 +793653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576114,6 +793707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576133,6 +793729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576212,6 +793811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576231,6 +793833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576282,6 +793887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576301,6 +793909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576380,6 +793991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576399,6 +794013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576450,6 +794067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576469,6 +794089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576548,6 +794171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576567,6 +794193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576618,6 +794247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576637,6 +794269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576716,6 +794351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576735,6 +794373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576786,6 +794427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576805,6 +794449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576884,6 +794531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576903,6 +794553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -576954,6 +794607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -576973,6 +794629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577052,6 +794711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577071,6 +794733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577122,6 +794787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577141,6 +794809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577220,6 +794891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577239,6 +794913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577290,6 +794967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577309,6 +794989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577388,6 +795071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577407,6 +795093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577458,6 +795147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577477,6 +795169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577556,6 +795251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577575,6 +795273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577626,6 +795327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577645,6 +795349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577724,6 +795431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577743,6 +795453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577794,6 +795507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577813,6 +795529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577892,6 +795611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577911,6 +795633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -577962,6 +795687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -577981,6 +795709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578060,6 +795791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578079,6 +795813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578130,6 +795867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578149,6 +795889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578228,6 +795971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578247,6 +795993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578298,6 +796047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578317,6 +796069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578396,6 +796151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578415,6 +796173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578466,6 +796227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578485,6 +796249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578564,6 +796331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578583,6 +796353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578634,6 +796407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578653,6 +796429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578732,6 +796511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578751,6 +796533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578802,6 +796587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578821,6 +796609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578900,6 +796691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578919,6 +796713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -578970,6 +796767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -578989,6 +796789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579068,6 +796871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579087,6 +796893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579138,6 +796947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579157,6 +796969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579236,6 +797051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579255,6 +797073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579306,6 +797127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579325,6 +797149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579404,6 +797231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579423,6 +797253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579474,6 +797307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579493,6 +797329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579572,6 +797411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579591,6 +797433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579642,6 +797487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579661,6 +797509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579740,6 +797591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579759,6 +797613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579810,6 +797667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579829,6 +797689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579908,6 +797771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579927,6 +797793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -579978,6 +797847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -579997,6 +797869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580076,6 +797951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580095,6 +797973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580146,6 +798027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580165,6 +798049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580244,6 +798131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580263,6 +798153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580314,6 +798207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580333,6 +798229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580412,6 +798311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580431,6 +798333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580482,6 +798387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580501,6 +798409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580580,6 +798491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580599,6 +798513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580650,6 +798567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580669,6 +798589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580748,6 +798671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580767,6 +798693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580818,6 +798747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580837,6 +798769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580916,6 +798851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -580935,6 +798873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -580986,6 +798927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581005,6 +798949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581084,6 +799031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581103,6 +799053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581154,6 +799107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581173,6 +799129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581252,6 +799211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581271,6 +799233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581322,6 +799287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581341,6 +799309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581420,6 +799391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581439,6 +799413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581490,6 +799467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581509,6 +799489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581588,6 +799571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581607,6 +799593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581658,6 +799647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581677,6 +799669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581756,6 +799751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581775,6 +799773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581826,6 +799827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581845,6 +799849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581924,6 +799931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -581943,6 +799953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -581994,6 +800007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582013,6 +800029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582092,6 +800111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582111,6 +800133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582162,6 +800187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582181,6 +800209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582260,6 +800291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582279,6 +800313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582330,6 +800367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582349,6 +800389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582428,6 +800471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582447,6 +800493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582498,6 +800547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582517,6 +800569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582596,6 +800651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582615,6 +800673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582666,6 +800727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582685,6 +800749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582764,6 +800831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582783,6 +800853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582834,6 +800907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582853,6 +800929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -582932,6 +801011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -582951,6 +801033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583002,6 +801087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583021,6 +801109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583100,6 +801191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583119,6 +801213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583170,6 +801267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583189,6 +801289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583268,6 +801371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583287,6 +801393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583338,6 +801447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583357,6 +801469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583436,6 +801551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583455,6 +801573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583506,6 +801627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583525,6 +801649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583604,6 +801731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583623,6 +801753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583674,6 +801807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583693,6 +801829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583772,6 +801911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583791,6 +801933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583842,6 +801987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583861,6 +802009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -583940,6 +802091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -583959,6 +802113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584010,6 +802167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584029,6 +802189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584108,6 +802271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584127,6 +802293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584178,6 +802347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584197,6 +802369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584276,6 +802451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584295,6 +802473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584346,6 +802527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584365,6 +802549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584444,6 +802631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584463,6 +802653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584514,6 +802707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584533,6 +802729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584612,6 +802811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584631,6 +802833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584682,6 +802887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584701,6 +802909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584780,6 +802991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584799,6 +803013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584850,6 +803067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584869,6 +803089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -584948,6 +803171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -584967,6 +803193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585018,6 +803247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585037,6 +803269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585116,6 +803351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585135,6 +803373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585186,6 +803427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585205,6 +803449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585284,6 +803531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585303,6 +803553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585354,6 +803607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585373,6 +803629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585452,6 +803711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585471,6 +803733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585522,6 +803787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585541,6 +803809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585620,6 +803891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585639,6 +803913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585690,6 +803967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585709,6 +803989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585788,6 +804071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585807,6 +804093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585858,6 +804147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585877,6 +804169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -585956,6 +804251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -585975,6 +804273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586026,6 +804327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586045,6 +804349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586124,6 +804431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586143,6 +804453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586194,6 +804507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586213,6 +804529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586292,6 +804611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586311,6 +804633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586362,6 +804687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586381,6 +804709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586460,6 +804791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586479,6 +804813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586530,6 +804867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586549,6 +804889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586628,6 +804971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586647,6 +804993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586698,6 +805047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586717,6 +805069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586796,6 +805151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586815,6 +805173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586866,6 +805227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586885,6 +805249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -586964,6 +805331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -586983,6 +805353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587034,6 +805407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587053,6 +805429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587132,6 +805511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587151,6 +805533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587202,6 +805587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587221,6 +805609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587300,6 +805691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587319,6 +805713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587370,6 +805767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587389,6 +805789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587468,6 +805871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587487,6 +805893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587538,6 +805947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587557,6 +805969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587636,6 +806051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587655,6 +806073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587706,6 +806127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587725,6 +806149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587804,6 +806231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587823,6 +806253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587874,6 +806307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587893,6 +806329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -587972,6 +806411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -587991,6 +806433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588042,6 +806487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588061,6 +806509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588140,6 +806591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588159,6 +806613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588210,6 +806667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588229,6 +806689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588308,6 +806771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588327,6 +806793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588378,6 +806847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588397,6 +806869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588476,6 +806951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588495,6 +806973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588546,6 +807027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588565,6 +807049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588644,6 +807131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588663,6 +807153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588714,6 +807207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588733,6 +807229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588812,6 +807311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588831,6 +807333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588882,6 +807387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588901,6 +807409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -588980,6 +807491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -588999,6 +807513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589050,6 +807567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589069,6 +807589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589148,6 +807671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589167,6 +807693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589218,6 +807747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589237,6 +807769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589316,6 +807851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589335,6 +807873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589386,6 +807927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589405,6 +807949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589484,6 +808031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589503,6 +808053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589554,6 +808107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589573,6 +808129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589652,6 +808211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589671,6 +808233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589722,6 +808287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589741,6 +808309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589820,6 +808391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589839,6 +808413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589890,6 +808467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -589909,6 +808489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -589988,6 +808571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590007,6 +808593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590058,6 +808647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590077,6 +808669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590156,6 +808751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590175,6 +808773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590226,6 +808827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590245,6 +808849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590324,6 +808931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590343,6 +808953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590394,6 +809007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590413,6 +809029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590492,6 +809111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590511,6 +809133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590562,6 +809187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590581,6 +809209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590660,6 +809291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590679,6 +809313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590730,6 +809367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590749,6 +809389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590828,6 +809471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590847,6 +809493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590898,6 +809547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -590917,6 +809569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -590996,6 +809651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591015,6 +809673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591066,6 +809727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591085,6 +809749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591164,6 +809831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591183,6 +809853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591234,6 +809907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591253,6 +809929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591332,6 +810011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591351,6 +810033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591402,6 +810087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591421,6 +810109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591500,6 +810191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591519,6 +810213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591570,6 +810267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591589,6 +810289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591668,6 +810371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591687,6 +810393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591738,6 +810447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591757,6 +810469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591836,6 +810551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591855,6 +810573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -591906,6 +810627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -591925,6 +810649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592004,6 +810731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592023,6 +810753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592074,6 +810807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592093,6 +810829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592172,6 +810911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592191,6 +810933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592242,6 +810987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592261,6 +811009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592340,6 +811091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592359,6 +811113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592410,6 +811167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592429,6 +811189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592508,6 +811271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592527,6 +811293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592578,6 +811347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592597,6 +811369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592676,6 +811451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592695,6 +811473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592746,6 +811527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592765,6 +811549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592844,6 +811631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592863,6 +811653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -592914,6 +811707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -592933,6 +811729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593012,6 +811811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593031,6 +811833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593082,6 +811887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593101,6 +811909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593180,6 +811991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593199,6 +812013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593250,6 +812067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593269,6 +812089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593348,6 +812171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593367,6 +812193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593418,6 +812247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593437,6 +812269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593516,6 +812351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593535,6 +812373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593586,6 +812427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593605,6 +812449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593684,6 +812531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593703,6 +812553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593754,6 +812607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593773,6 +812629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593852,6 +812711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593871,6 +812733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -593922,6 +812787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -593941,6 +812809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594020,6 +812891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594039,6 +812913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594090,6 +812967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594109,6 +812989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594188,6 +813071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594207,6 +813093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594258,6 +813147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594277,6 +813169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594356,6 +813251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594375,6 +813273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594426,6 +813327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594445,6 +813349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594524,6 +813431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594543,6 +813453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594594,6 +813507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594613,6 +813529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594692,6 +813611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594711,6 +813633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594762,6 +813687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594781,6 +813709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594860,6 +813791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594879,6 +813813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -594930,6 +813867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -594949,6 +813889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595028,6 +813971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595047,6 +813993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595098,6 +814047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595117,6 +814069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595196,6 +814151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595215,6 +814173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595266,6 +814227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595285,6 +814249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595364,6 +814331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595383,6 +814353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595434,6 +814407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595453,6 +814429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595532,6 +814511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595551,6 +814533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595602,6 +814587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595621,6 +814609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595700,6 +814691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595719,6 +814713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595770,6 +814767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595789,6 +814789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595868,6 +814871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595887,6 +814893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -595938,6 +814947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -595957,6 +814969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596036,6 +815051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596055,6 +815073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596106,6 +815127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596125,6 +815149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596204,6 +815231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596223,6 +815253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596274,6 +815307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596293,6 +815329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596372,6 +815411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596391,6 +815433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596442,6 +815487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596461,6 +815509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596540,6 +815591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596559,6 +815613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596610,6 +815667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596629,6 +815689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596708,6 +815771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596727,6 +815793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596778,6 +815847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596797,6 +815869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596876,6 +815951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596895,6 +815973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -596946,6 +816027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -596965,6 +816049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597044,6 +816131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597063,6 +816153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597114,6 +816207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597133,6 +816229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597212,6 +816311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597231,6 +816333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597282,6 +816387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597301,6 +816409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597380,6 +816491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597399,6 +816513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597450,6 +816567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597469,6 +816589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597548,6 +816671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597567,6 +816693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597618,6 +816747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597637,6 +816769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597716,6 +816851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597735,6 +816873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597786,6 +816927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597805,6 +816949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597884,6 +817031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597903,6 +817053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -597954,6 +817107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -597973,6 +817129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598052,6 +817211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598071,6 +817233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598122,6 +817287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598141,6 +817309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598220,6 +817391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598239,6 +817413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598290,6 +817467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598309,6 +817489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598388,6 +817571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598407,6 +817593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598458,6 +817647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598477,6 +817669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598556,6 +817751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598575,6 +817773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598626,6 +817827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598645,6 +817849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598724,6 +817931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598743,6 +817953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598794,6 +818007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598813,6 +818029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598892,6 +818111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598911,6 +818133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -598962,6 +818187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -598981,6 +818209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599060,6 +818291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599079,6 +818313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599130,6 +818367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599149,6 +818389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599228,6 +818471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599247,6 +818493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599298,6 +818547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599317,6 +818569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599396,6 +818651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599415,6 +818673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599466,6 +818727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599485,6 +818749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599564,6 +818831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599583,6 +818853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599634,6 +818907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599653,6 +818929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599732,6 +819011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599751,6 +819033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599802,6 +819087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599821,6 +819109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599900,6 +819191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599919,6 +819213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -599970,6 +819267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -599989,6 +819289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600068,6 +819371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600087,6 +819393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600138,6 +819447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600157,6 +819469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600236,6 +819551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600255,6 +819573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600306,6 +819627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600325,6 +819649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600404,6 +819731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600423,6 +819753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600474,6 +819807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600493,6 +819829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600572,6 +819911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600591,6 +819933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600642,6 +819987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600661,6 +820009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600740,6 +820091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600759,6 +820113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600810,6 +820167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600829,6 +820189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600908,6 +820271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600927,6 +820293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -600978,6 +820347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -600997,6 +820369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601076,6 +820451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601095,6 +820473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601146,6 +820527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601165,6 +820549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601244,6 +820631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601263,6 +820653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601314,6 +820707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601333,6 +820729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601412,6 +820811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601431,6 +820833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601482,6 +820887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601501,6 +820909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601580,6 +820991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601599,6 +821013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601650,6 +821067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601669,6 +821089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601748,6 +821171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601767,6 +821193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601818,6 +821247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601837,6 +821269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601916,6 +821351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -601935,6 +821373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -601986,6 +821427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602005,6 +821449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602084,6 +821531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602103,6 +821553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602154,6 +821607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602173,6 +821629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602252,6 +821711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602271,6 +821733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602322,6 +821787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602341,6 +821809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602420,6 +821891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602439,6 +821913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602490,6 +821967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602509,6 +821989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602588,6 +822071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602607,6 +822093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602658,6 +822147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602677,6 +822169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602756,6 +822251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602775,6 +822273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602826,6 +822327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602845,6 +822349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602924,6 +822431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -602943,6 +822453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -602994,6 +822507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603013,6 +822529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603092,6 +822611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603111,6 +822633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603162,6 +822687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603181,6 +822709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603260,6 +822791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603279,6 +822813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603330,6 +822867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603349,6 +822889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603428,6 +822971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603447,6 +822993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603498,6 +823047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603517,6 +823069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603596,6 +823151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603615,6 +823173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603666,6 +823227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603685,6 +823249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603764,6 +823331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603783,6 +823353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603834,6 +823407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603853,6 +823429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -603932,6 +823511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -603951,6 +823533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604002,6 +823587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604021,6 +823609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604100,6 +823691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604119,6 +823713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604170,6 +823767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604189,6 +823789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604268,6 +823871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604287,6 +823893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604338,6 +823947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604357,6 +823969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604436,6 +824051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604455,6 +824073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604506,6 +824127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604525,6 +824149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604604,6 +824231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604623,6 +824253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604674,6 +824307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604693,6 +824329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604772,6 +824411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604791,6 +824433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604842,6 +824487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604861,6 +824509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -604940,6 +824591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -604959,6 +824613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605010,6 +824667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605029,6 +824689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605108,6 +824771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605127,6 +824793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605178,6 +824847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605197,6 +824869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605276,6 +824951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605295,6 +824973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605346,6 +825027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605365,6 +825049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605444,6 +825131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605463,6 +825153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605514,6 +825207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605533,6 +825229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605612,6 +825311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605631,6 +825333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605682,6 +825387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605701,6 +825409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605780,6 +825491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605799,6 +825513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605850,6 +825567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605869,6 +825589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -605948,6 +825671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -605967,6 +825693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606018,6 +825747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606037,6 +825769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606116,6 +825851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606135,6 +825873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606186,6 +825927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606205,6 +825949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606284,6 +826031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606303,6 +826053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606354,6 +826107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606373,6 +826129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606452,6 +826211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606471,6 +826233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606522,6 +826287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606541,6 +826309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606620,6 +826391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606639,6 +826413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606690,6 +826467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606709,6 +826489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606788,6 +826571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606807,6 +826593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606858,6 +826647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606877,6 +826669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -606956,6 +826751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -606975,6 +826773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607026,6 +826827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607045,6 +826849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607124,6 +826931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607143,6 +826953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607194,6 +827007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607213,6 +827029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607292,6 +827111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607311,6 +827133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607362,6 +827187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607381,6 +827209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607460,6 +827291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607479,6 +827313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607530,6 +827367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607549,6 +827389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607628,6 +827471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607647,6 +827493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607698,6 +827547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607717,6 +827569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607796,6 +827651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607815,6 +827673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607866,6 +827727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607885,6 +827749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -607964,6 +827831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -607983,6 +827853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608034,6 +827907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608053,6 +827929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608132,6 +828011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608151,6 +828033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608202,6 +828087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608221,6 +828109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608300,6 +828191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608319,6 +828213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608370,6 +828267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608389,6 +828289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608468,6 +828371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608487,6 +828393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608538,6 +828447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608557,6 +828469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608636,6 +828551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608655,6 +828573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608706,6 +828627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608725,6 +828649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608804,6 +828731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608823,6 +828753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608874,6 +828807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608893,6 +828829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -608972,6 +828911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -608991,6 +828933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609042,6 +828987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609061,6 +829009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609140,6 +829091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609159,6 +829113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609210,6 +829167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609229,6 +829189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609308,6 +829271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609327,6 +829293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609378,6 +829347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609397,6 +829369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609476,6 +829451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609495,6 +829473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609546,6 +829527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609565,6 +829549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609644,6 +829631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609663,6 +829653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609714,6 +829707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609733,6 +829729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609812,6 +829811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609831,6 +829833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609882,6 +829887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609901,6 +829909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -609980,6 +829991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -609999,6 +830013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610050,6 +830067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610069,6 +830089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610148,6 +830171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610167,6 +830193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610218,6 +830247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610237,6 +830269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610316,6 +830351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610335,6 +830373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610386,6 +830427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610405,6 +830449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610484,6 +830531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610503,6 +830553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610554,6 +830607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610573,6 +830629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610652,6 +830711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610671,6 +830733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610722,6 +830787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610741,6 +830809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610820,6 +830891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610839,6 +830913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610890,6 +830967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -610909,6 +830989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -610988,6 +831071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611007,6 +831093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611058,6 +831147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611077,6 +831169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611156,6 +831251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611175,6 +831273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611226,6 +831327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611245,6 +831349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611324,6 +831431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611343,6 +831453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611394,6 +831507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611413,6 +831529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611492,6 +831611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611511,6 +831633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611562,6 +831687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611581,6 +831709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611660,6 +831791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611679,6 +831813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611730,6 +831867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611749,6 +831889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611828,6 +831971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611847,6 +831993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611898,6 +832047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -611917,6 +832069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -611996,6 +832151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612015,6 +832173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612066,6 +832227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612085,6 +832249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612164,6 +832331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612183,6 +832353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612234,6 +832407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612253,6 +832429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612332,6 +832511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612351,6 +832533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612402,6 +832587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612421,6 +832609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612500,6 +832691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612519,6 +832713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612570,6 +832767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612589,6 +832789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612668,6 +832871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612687,6 +832893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612738,6 +832947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612757,6 +832969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612836,6 +833051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612855,6 +833073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -612906,6 +833127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -612925,6 +833149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613004,6 +833231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613023,6 +833253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613074,6 +833307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613093,6 +833329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613172,6 +833411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613191,6 +833433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613242,6 +833487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613261,6 +833509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613340,6 +833591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613359,6 +833613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613410,6 +833667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613429,6 +833689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613508,6 +833771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613527,6 +833793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613578,6 +833847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613597,6 +833869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613676,6 +833951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613695,6 +833973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613746,6 +834027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613765,6 +834049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613844,6 +834131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613863,6 +834153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -613914,6 +834207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -613933,6 +834229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614012,6 +834311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614031,6 +834333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614082,6 +834387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614101,6 +834409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614180,6 +834491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614199,6 +834513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614250,6 +834567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614269,6 +834589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614348,6 +834671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614367,6 +834693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614418,6 +834747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614437,6 +834769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614516,6 +834851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614535,6 +834873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614586,6 +834927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614605,6 +834949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614684,6 +835031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614703,6 +835053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614754,6 +835107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614773,6 +835129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614852,6 +835211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614871,6 +835233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -614922,6 +835287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -614941,6 +835309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615020,6 +835391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615039,6 +835413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615090,6 +835467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615109,6 +835489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615188,6 +835571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615207,6 +835593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615258,6 +835647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615277,6 +835669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615356,6 +835751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615375,6 +835773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615426,6 +835827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615445,6 +835849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615524,6 +835931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615543,6 +835953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615594,6 +836007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615613,6 +836029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615692,6 +836111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615711,6 +836133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615762,6 +836187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615781,6 +836209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615860,6 +836291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615879,6 +836313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -615930,6 +836367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -615949,6 +836389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616028,6 +836471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616047,6 +836493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616098,6 +836547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616117,6 +836569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616196,6 +836651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616215,6 +836673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616266,6 +836727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616285,6 +836749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616364,6 +836831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616383,6 +836853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616434,6 +836907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616453,6 +836929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616532,6 +837011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616551,6 +837033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616602,6 +837087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616621,6 +837109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616700,6 +837191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616719,6 +837213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616770,6 +837267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616789,6 +837289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616868,6 +837371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616887,6 +837393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -616938,6 +837447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -616957,6 +837469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617036,6 +837551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617055,6 +837573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617106,6 +837627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617125,6 +837649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617204,6 +837731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617223,6 +837753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617274,6 +837807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617293,6 +837829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617372,6 +837911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617391,6 +837933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617442,6 +837987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617461,6 +838009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617540,6 +838091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617559,6 +838113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617610,6 +838167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617629,6 +838189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617708,6 +838271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617727,6 +838293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617778,6 +838347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617797,6 +838369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617876,6 +838451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617895,6 +838473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -617946,6 +838527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -617965,6 +838549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618044,6 +838631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618063,6 +838653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618114,6 +838707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618133,6 +838729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618212,6 +838811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618231,6 +838833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618282,6 +838887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618301,6 +838909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618380,6 +838991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618399,6 +839013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618450,6 +839067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618469,6 +839089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618548,6 +839171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618567,6 +839193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618618,6 +839247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618637,6 +839269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618716,6 +839351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618735,6 +839373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618786,6 +839427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618805,6 +839449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618884,6 +839531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618903,6 +839553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -618954,6 +839607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -618973,6 +839629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619052,6 +839711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619071,6 +839733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619122,6 +839787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619141,6 +839809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619220,6 +839891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619239,6 +839913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619290,6 +839967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619309,6 +839989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619388,6 +840071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619407,6 +840093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619458,6 +840147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619477,6 +840169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619556,6 +840251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619575,6 +840273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619626,6 +840327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619645,6 +840349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619724,6 +840431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619743,6 +840453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619794,6 +840507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619813,6 +840529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619892,6 +840611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619911,6 +840633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -619962,6 +840687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -619981,6 +840709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620060,6 +840791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620079,6 +840813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620130,6 +840867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620149,6 +840889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620228,6 +840971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620247,6 +840993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620298,6 +841047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620317,6 +841069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620396,6 +841151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620415,6 +841173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620466,6 +841227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620485,6 +841249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620564,6 +841331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620583,6 +841353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620634,6 +841407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620653,6 +841429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620732,6 +841511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620751,6 +841533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620802,6 +841587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620821,6 +841609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620900,6 +841691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620919,6 +841713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -620970,6 +841767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -620989,6 +841789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621068,6 +841871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621087,6 +841893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621138,6 +841947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621157,6 +841969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621236,6 +842051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621255,6 +842073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621306,6 +842127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621325,6 +842149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621404,6 +842231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621423,6 +842253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621474,6 +842307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621493,6 +842329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621572,6 +842411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621591,6 +842433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621642,6 +842487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621661,6 +842509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621740,6 +842591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621759,6 +842613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621810,6 +842667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621829,6 +842689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621908,6 +842771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621927,6 +842793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -621978,6 +842847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -621997,6 +842869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622076,6 +842951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622095,6 +842973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622146,6 +843027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622165,6 +843049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622244,6 +843131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622263,6 +843153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622314,6 +843207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622333,6 +843229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622412,6 +843311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622431,6 +843333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622482,6 +843387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622501,6 +843409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622580,6 +843491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622599,6 +843513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622650,6 +843567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622669,6 +843589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622748,6 +843671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622767,6 +843693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622818,6 +843747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622837,6 +843769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622916,6 +843851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -622935,6 +843873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -622986,6 +843927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623005,6 +843949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623084,6 +844031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623103,6 +844053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623154,6 +844107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623173,6 +844129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623252,6 +844211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623271,6 +844233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623322,6 +844287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623341,6 +844309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623420,6 +844391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623439,6 +844413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623490,6 +844467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623509,6 +844489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623588,6 +844571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623607,6 +844593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623658,6 +844647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623677,6 +844669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623756,6 +844751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623775,6 +844773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623826,6 +844827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623845,6 +844849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623924,6 +844931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -623943,6 +844953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -623994,6 +845007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624013,6 +845029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624092,6 +845111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624111,6 +845133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624162,6 +845187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624181,6 +845209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624260,6 +845291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624279,6 +845313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624330,6 +845367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624349,6 +845389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624428,6 +845471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624447,6 +845493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624498,6 +845547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624517,6 +845569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624596,6 +845651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624615,6 +845673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624666,6 +845727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624685,6 +845749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624764,6 +845831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624783,6 +845853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624834,6 +845907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624853,6 +845929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -624932,6 +846011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -624951,6 +846033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625002,6 +846087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625021,6 +846109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625100,6 +846191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625119,6 +846213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625170,6 +846267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625189,6 +846289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625268,6 +846371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625287,6 +846393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625338,6 +846447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625357,6 +846469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625436,6 +846551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625455,6 +846573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625506,6 +846627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625525,6 +846649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625604,6 +846731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625623,6 +846753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625674,6 +846807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625693,6 +846829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625772,6 +846911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625791,6 +846933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625842,6 +846987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625861,6 +847009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -625940,6 +847091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -625959,6 +847113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626010,6 +847167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626029,6 +847189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626108,6 +847271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626127,6 +847293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626178,6 +847347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626197,6 +847369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626276,6 +847451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626295,6 +847473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626346,6 +847527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626365,6 +847549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626444,6 +847631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626463,6 +847653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626514,6 +847707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626533,6 +847729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626612,6 +847811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626631,6 +847833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626682,6 +847887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626701,6 +847909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626780,6 +847991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626799,6 +848013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626850,6 +848067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626869,6 +848089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -626948,6 +848171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -626967,6 +848193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627018,6 +848247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627037,6 +848269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627116,6 +848351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627135,6 +848373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627186,6 +848427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627205,6 +848449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627284,6 +848531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627303,6 +848553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627354,6 +848607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627373,6 +848629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627452,6 +848711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627471,6 +848733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627522,6 +848787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627541,6 +848809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627620,6 +848891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627639,6 +848913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627690,6 +848967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627709,6 +848989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627788,6 +849071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627807,6 +849093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627858,6 +849147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627877,6 +849169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -627956,6 +849251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -627975,6 +849273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628026,6 +849327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628045,6 +849349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628124,6 +849431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628143,6 +849453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628194,6 +849507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628213,6 +849529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628292,6 +849611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628311,6 +849633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628362,6 +849687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628381,6 +849709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628460,6 +849791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628479,6 +849813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628530,6 +849867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628549,6 +849889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628628,6 +849971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628647,6 +849993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628698,6 +850047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628717,6 +850069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628796,6 +850151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628815,6 +850173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628866,6 +850227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628885,6 +850249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -628964,6 +850331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -628983,6 +850353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629034,6 +850407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629053,6 +850429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629132,6 +850511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629151,6 +850533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629202,6 +850587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629221,6 +850609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629300,6 +850691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629319,6 +850713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629370,6 +850767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629389,6 +850789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629468,6 +850871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629487,6 +850893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629538,6 +850947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629557,6 +850969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629636,6 +851051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629655,6 +851073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629706,6 +851127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629725,6 +851149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629804,6 +851231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629823,6 +851253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629874,6 +851307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629893,6 +851329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -629972,6 +851411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -629991,6 +851433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630042,6 +851487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630061,6 +851509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630140,6 +851591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630159,6 +851613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630210,6 +851667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630229,6 +851689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630308,6 +851771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630327,6 +851793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630378,6 +851847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630397,6 +851869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630476,6 +851951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630495,6 +851973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630546,6 +852027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630565,6 +852049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630644,6 +852131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630663,6 +852153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630714,6 +852207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630733,6 +852229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630812,6 +852311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630831,6 +852333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630882,6 +852387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630901,6 +852409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -630980,6 +852491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -630999,6 +852513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631050,6 +852567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631069,6 +852589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631148,6 +852671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631167,6 +852693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631218,6 +852747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631237,6 +852769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631316,6 +852851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631335,6 +852873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631386,6 +852927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631405,6 +852949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631484,6 +853031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631503,6 +853053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631554,6 +853107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631573,6 +853129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631652,6 +853211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631671,6 +853233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631722,6 +853287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631741,6 +853309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631820,6 +853391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631839,6 +853413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631890,6 +853467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -631909,6 +853489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -631988,6 +853571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632007,6 +853593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632058,6 +853647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632077,6 +853669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632156,6 +853751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632175,6 +853773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632226,6 +853827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632245,6 +853849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632324,6 +853931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632343,6 +853953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632394,6 +854007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632413,6 +854029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632492,6 +854111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632511,6 +854133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632562,6 +854187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632581,6 +854209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632660,6 +854291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632679,6 +854313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632730,6 +854367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632749,6 +854389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632828,6 +854471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632847,6 +854493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632898,6 +854547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -632917,6 +854569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -632996,6 +854651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633015,6 +854673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633066,6 +854727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633085,6 +854749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633164,6 +854831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633183,6 +854853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633234,6 +854907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633253,6 +854929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633332,6 +855011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633351,6 +855033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633402,6 +855087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633421,6 +855109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633500,6 +855191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633519,6 +855213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633570,6 +855267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633589,6 +855289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633668,6 +855371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633687,6 +855393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633738,6 +855447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633757,6 +855469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633836,6 +855551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633855,6 +855573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -633906,6 +855627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -633925,6 +855649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634004,6 +855731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634023,6 +855753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634074,6 +855807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634093,6 +855829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634172,6 +855911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634191,6 +855933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634242,6 +855987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634261,6 +856009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634340,6 +856091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634359,6 +856113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634410,6 +856167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634429,6 +856189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634508,6 +856271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634527,6 +856293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634578,6 +856347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634597,6 +856369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634676,6 +856451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634695,6 +856473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634746,6 +856527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634765,6 +856549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634844,6 +856631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634863,6 +856653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -634914,6 +856707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -634933,6 +856729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635012,6 +856811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635031,6 +856833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635082,6 +856887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635101,6 +856909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635180,6 +856991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635199,6 +857013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635250,6 +857067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635269,6 +857089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635348,6 +857171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635367,6 +857193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635418,6 +857247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635437,6 +857269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635516,6 +857351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635535,6 +857373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635586,6 +857427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635605,6 +857449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635684,6 +857531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635703,6 +857553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635754,6 +857607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635773,6 +857629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635852,6 +857711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635871,6 +857733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -635922,6 +857787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -635941,6 +857809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636020,6 +857891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636039,6 +857913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636090,6 +857967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636109,6 +857989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636188,6 +858071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636207,6 +858093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636258,6 +858147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636277,6 +858169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636356,6 +858251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636375,6 +858273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636426,6 +858327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636445,6 +858349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636524,6 +858431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636543,6 +858453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636594,6 +858507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636613,6 +858529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636692,6 +858611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636711,6 +858633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636762,6 +858687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636781,6 +858709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636860,6 +858791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636879,6 +858813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -636930,6 +858867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -636949,6 +858889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637028,6 +858971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637047,6 +858993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637098,6 +859047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637117,6 +859069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637196,6 +859151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637215,6 +859173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637266,6 +859227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637285,6 +859249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637364,6 +859331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637383,6 +859353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637434,6 +859407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637453,6 +859429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637532,6 +859511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637551,6 +859533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637602,6 +859587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637621,6 +859609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637700,6 +859691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637719,6 +859713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637770,6 +859767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637789,6 +859789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637868,6 +859871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637887,6 +859893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -637938,6 +859947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -637957,6 +859969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638036,6 +860051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638055,6 +860073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638106,6 +860127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638125,6 +860149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638204,6 +860231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638223,6 +860253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638274,6 +860307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638293,6 +860329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638372,6 +860411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638391,6 +860433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638442,6 +860487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638461,6 +860509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638540,6 +860591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638559,6 +860613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638610,6 +860667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638629,6 +860689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638708,6 +860771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638727,6 +860793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638778,6 +860847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638797,6 +860869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638876,6 +860951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638895,6 +860973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -638946,6 +861027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -638965,6 +861049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639044,6 +861131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639063,6 +861153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639114,6 +861207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639133,6 +861229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639212,6 +861311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639231,6 +861333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639282,6 +861387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639301,6 +861409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639380,6 +861491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639399,6 +861513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639450,6 +861567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639469,6 +861589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639548,6 +861671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639567,6 +861693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639618,6 +861747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639637,6 +861769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639716,6 +861851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639735,6 +861873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639786,6 +861927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639805,6 +861949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639884,6 +862031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639903,6 +862053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -639954,6 +862107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -639973,6 +862129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640052,6 +862211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640071,6 +862233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640122,6 +862287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640141,6 +862309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640220,6 +862391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640239,6 +862413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640290,6 +862467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640309,6 +862489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640388,6 +862571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640407,6 +862593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640458,6 +862647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640477,6 +862669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640556,6 +862751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640575,6 +862773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640626,6 +862827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640645,6 +862849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640724,6 +862931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640743,6 +862953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640794,6 +863007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640813,6 +863029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640892,6 +863111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640911,6 +863133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -640962,6 +863187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -640981,6 +863209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641060,6 +863291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641079,6 +863313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641130,6 +863367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641149,6 +863389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641228,6 +863471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641247,6 +863493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641298,6 +863547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641317,6 +863569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641396,6 +863651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641415,6 +863673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641466,6 +863727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641485,6 +863749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641564,6 +863831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641583,6 +863853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641634,6 +863907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641653,6 +863929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641732,6 +864011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641751,6 +864033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641802,6 +864087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641821,6 +864109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641900,6 +864191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641919,6 +864213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -641970,6 +864267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -641989,6 +864289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642068,6 +864371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642087,6 +864393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642138,6 +864447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642157,6 +864469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642236,6 +864551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642255,6 +864573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642306,6 +864627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642325,6 +864649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642404,6 +864731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642423,6 +864753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642474,6 +864807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642493,6 +864829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642572,6 +864911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642591,6 +864933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642642,6 +864987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642661,6 +865009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642740,6 +865091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642759,6 +865113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642810,6 +865167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642829,6 +865189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642908,6 +865271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642927,6 +865293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -642978,6 +865347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -642997,6 +865369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643076,6 +865451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643095,6 +865473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643146,6 +865527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643165,6 +865549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643244,6 +865631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643263,6 +865653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643314,6 +865707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643333,6 +865729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643412,6 +865811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643431,6 +865833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643482,6 +865887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643501,6 +865909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643580,6 +865991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643599,6 +866013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643650,6 +866067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643669,6 +866089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643748,6 +866171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643767,6 +866193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643818,6 +866247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643837,6 +866269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643916,6 +866351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -643935,6 +866373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -643986,6 +866427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644005,6 +866449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644084,6 +866531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644103,6 +866553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644154,6 +866607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644173,6 +866629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644252,6 +866711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644271,6 +866733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644322,6 +866787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644341,6 +866809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644420,6 +866891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644439,6 +866913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644490,6 +866967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644509,6 +866989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644588,6 +867071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644607,6 +867093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644658,6 +867147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644677,6 +867169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644756,6 +867251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644775,6 +867273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644826,6 +867327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644845,6 +867349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644924,6 +867431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -644943,6 +867453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -644994,6 +867507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645013,6 +867529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645092,6 +867611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645111,6 +867633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645162,6 +867687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645181,6 +867709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645260,6 +867791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645279,6 +867813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645330,6 +867867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645349,6 +867889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645428,6 +867971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645447,6 +867993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645498,6 +868047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645517,6 +868069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645596,6 +868151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645615,6 +868173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645666,6 +868227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645685,6 +868249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645764,6 +868331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645783,6 +868353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645834,6 +868407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645853,6 +868429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -645932,6 +868511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -645951,6 +868533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646002,6 +868587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646021,6 +868609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646100,6 +868691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646119,6 +868713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646170,6 +868767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646189,6 +868789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646268,6 +868871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646287,6 +868893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646338,6 +868947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646357,6 +868969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646436,6 +869051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646455,6 +869073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646506,6 +869127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646525,6 +869149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646604,6 +869231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646623,6 +869253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646674,6 +869307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646693,6 +869329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646772,6 +869411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646791,6 +869433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646842,6 +869487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646861,6 +869509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -646940,6 +869591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -646959,6 +869613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647010,6 +869667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647029,6 +869689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647108,6 +869771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647127,6 +869793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647178,6 +869847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647197,6 +869869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647276,6 +869951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647295,6 +869973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647346,6 +870027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647365,6 +870049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647444,6 +870131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647463,6 +870153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647514,6 +870207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647533,6 +870229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647612,6 +870311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647631,6 +870333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647682,6 +870387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647701,6 +870409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647780,6 +870491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647799,6 +870513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647850,6 +870567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647869,6 +870589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -647948,6 +870671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -647967,6 +870693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648018,6 +870747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648037,6 +870769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648116,6 +870851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648135,6 +870873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648186,6 +870927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648205,6 +870949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648284,6 +871031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648303,6 +871053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648354,6 +871107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648373,6 +871129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648452,6 +871211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648471,6 +871233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648522,6 +871287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648541,6 +871309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648620,6 +871391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648639,6 +871413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648690,6 +871467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648709,6 +871489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648788,6 +871571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648807,6 +871593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648858,6 +871647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648877,6 +871669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -648956,6 +871751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -648975,6 +871773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649026,6 +871827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649045,6 +871849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649124,6 +871931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649143,6 +871953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649194,6 +872007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649213,6 +872029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649292,6 +872111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649311,6 +872133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649362,6 +872187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649381,6 +872209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649460,6 +872291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649479,6 +872313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649530,6 +872367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649549,6 +872389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649628,6 +872471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649647,6 +872493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649698,6 +872547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649717,6 +872569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649796,6 +872651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649815,6 +872673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649866,6 +872727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649885,6 +872749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -649964,6 +872831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -649983,6 +872853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650034,6 +872907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650053,6 +872929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650132,6 +873011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650151,6 +873033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650202,6 +873087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650221,6 +873109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650300,6 +873191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650319,6 +873213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650370,6 +873267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650389,6 +873289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650468,6 +873371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650487,6 +873393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650538,6 +873447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650557,6 +873469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650636,6 +873551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650655,6 +873573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650706,6 +873627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650725,6 +873649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650804,6 +873731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650823,6 +873753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650874,6 +873807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650893,6 +873829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -650972,6 +873911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -650991,6 +873933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651042,6 +873987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651061,6 +874009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651140,6 +874091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651159,6 +874113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651210,6 +874167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651229,6 +874189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651308,6 +874271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651327,6 +874293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651378,6 +874347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651397,6 +874369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651476,6 +874451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651495,6 +874473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651546,6 +874527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651565,6 +874549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651644,6 +874631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651663,6 +874653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651714,6 +874707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651733,6 +874729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651812,6 +874811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651831,6 +874833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651882,6 +874887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651901,6 +874909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -651980,6 +874991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -651999,6 +875013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652050,6 +875067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652069,6 +875089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652148,6 +875171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652167,6 +875193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652218,6 +875247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652237,6 +875269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652316,6 +875351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652335,6 +875373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652386,6 +875427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652405,6 +875449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652484,6 +875531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652503,6 +875553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652554,6 +875607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652573,6 +875629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652652,6 +875711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652671,6 +875733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652722,6 +875787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652741,6 +875809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652820,6 +875891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652839,6 +875913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652890,6 +875967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -652909,6 +875989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -652988,6 +876071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653007,6 +876093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653058,6 +876147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653077,6 +876169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653156,6 +876251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653175,6 +876273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653226,6 +876327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653245,6 +876349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653324,6 +876431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653343,6 +876453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653394,6 +876507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653413,6 +876529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653492,6 +876611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653511,6 +876633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653562,6 +876687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653581,6 +876709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653660,6 +876791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653679,6 +876813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653730,6 +876867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653749,6 +876889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653828,6 +876971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653847,6 +876993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653898,6 +877047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -653917,6 +877069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -653996,6 +877151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654015,6 +877173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654066,6 +877227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654085,6 +877249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654164,6 +877331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654183,6 +877353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654234,6 +877407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654253,6 +877429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654332,6 +877511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654351,6 +877533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654402,6 +877587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654421,6 +877609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654500,6 +877691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654519,6 +877713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654570,6 +877767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654589,6 +877789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654668,6 +877871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654687,6 +877893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654738,6 +877947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654757,6 +877969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654836,6 +878051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654855,6 +878073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -654906,6 +878127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -654925,6 +878149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655004,6 +878231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655023,6 +878253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655074,6 +878307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655093,6 +878329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655172,6 +878411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655191,6 +878433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655242,6 +878487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655261,6 +878509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655340,6 +878591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655359,6 +878613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655410,6 +878667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655429,6 +878689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655508,6 +878771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655527,6 +878793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655578,6 +878847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655597,6 +878869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655676,6 +878951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655695,6 +878973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655746,6 +879027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655765,6 +879049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655844,6 +879131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655863,6 +879153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -655914,6 +879207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -655933,6 +879229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656012,6 +879311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656031,6 +879333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656082,6 +879387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656101,6 +879409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656180,6 +879491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656199,6 +879513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656250,6 +879567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656269,6 +879589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656348,6 +879671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656367,6 +879693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656418,6 +879747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656437,6 +879769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656516,6 +879851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656535,6 +879873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656586,6 +879927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656605,6 +879949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656684,6 +880031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656703,6 +880053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656754,6 +880107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656773,6 +880129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656852,6 +880211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656871,6 +880233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -656922,6 +880287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -656941,6 +880309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657020,6 +880391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657039,6 +880413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657090,6 +880467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657109,6 +880489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657188,6 +880571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657207,6 +880593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657258,6 +880647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657277,6 +880669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657356,6 +880751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657375,6 +880773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657426,6 +880827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657445,6 +880849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657524,6 +880931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657543,6 +880953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657594,6 +881007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657613,6 +881029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657692,6 +881111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657711,6 +881133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657762,6 +881187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657781,6 +881209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657860,6 +881291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657879,6 +881313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -657930,6 +881367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -657949,6 +881389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658028,6 +881471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658047,6 +881493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658098,6 +881547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658117,6 +881569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658196,6 +881651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658215,6 +881673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658266,6 +881727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658285,6 +881749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658364,6 +881831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658383,6 +881853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658434,6 +881907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658453,6 +881929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658532,6 +882011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658551,6 +882033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658602,6 +882087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658621,6 +882109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658700,6 +882191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658719,6 +882213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658770,6 +882267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658789,6 +882289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658868,6 +882371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658887,6 +882393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -658938,6 +882447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -658957,6 +882469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659036,6 +882551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659055,6 +882573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659106,6 +882627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659125,6 +882649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659204,6 +882731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659223,6 +882753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659274,6 +882807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659293,6 +882829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659372,6 +882911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659391,6 +882933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659442,6 +882987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659461,6 +883009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659540,6 +883091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659559,6 +883113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659610,6 +883167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659629,6 +883189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659708,6 +883271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659727,6 +883293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659778,6 +883347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659797,6 +883369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659876,6 +883451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659895,6 +883473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -659946,6 +883527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -659965,6 +883549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660044,6 +883631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660063,6 +883653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660114,6 +883707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660133,6 +883729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660212,6 +883811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660231,6 +883833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660282,6 +883887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660301,6 +883909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660380,6 +883991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660399,6 +884013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660450,6 +884067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660469,6 +884089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660548,6 +884171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660567,6 +884193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660618,6 +884247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660637,6 +884269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660716,6 +884351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660735,6 +884373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660786,6 +884427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660805,6 +884449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660884,6 +884531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660903,6 +884553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -660954,6 +884607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -660973,6 +884629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661052,6 +884711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661071,6 +884733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661122,6 +884787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661141,6 +884809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661220,6 +884891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661239,6 +884913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661290,6 +884967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661309,6 +884989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661388,6 +885071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661407,6 +885093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661458,6 +885147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661477,6 +885169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661556,6 +885251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661575,6 +885273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661626,6 +885327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661645,6 +885349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661724,6 +885431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661743,6 +885453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661794,6 +885507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661813,6 +885529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661892,6 +885611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661911,6 +885633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -661962,6 +885687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -661981,6 +885709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662060,6 +885791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662079,6 +885813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662130,6 +885867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662149,6 +885889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662228,6 +885971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662247,6 +885993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662298,6 +886047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662317,6 +886069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662396,6 +886151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662415,6 +886173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662466,6 +886227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662485,6 +886249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662564,6 +886331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662583,6 +886353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662634,6 +886407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662653,6 +886429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662732,6 +886511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662751,6 +886533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662802,6 +886587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662821,6 +886609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662900,6 +886691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662919,6 +886713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -662970,6 +886767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -662989,6 +886789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663068,6 +886871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663087,6 +886893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663138,6 +886947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663157,6 +886969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663236,6 +887051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663255,6 +887073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663306,6 +887127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663325,6 +887149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663404,6 +887231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663423,6 +887253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663474,6 +887307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663493,6 +887329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663572,6 +887411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663591,6 +887433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663642,6 +887487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663661,6 +887509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663740,6 +887591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663759,6 +887613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663810,6 +887667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663829,6 +887689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663908,6 +887771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663927,6 +887793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -663978,6 +887847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -663997,6 +887869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664076,6 +887951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664095,6 +887973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664146,6 +888027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664165,6 +888049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664244,6 +888131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664263,6 +888153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664314,6 +888207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664333,6 +888229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664412,6 +888311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664431,6 +888333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664482,6 +888387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664501,6 +888409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664580,6 +888491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664599,6 +888513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664650,6 +888567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664669,6 +888589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664748,6 +888671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664767,6 +888693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664818,6 +888747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664837,6 +888769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664916,6 +888851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -664935,6 +888873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -664986,6 +888927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665005,6 +888949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665084,6 +889031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665103,6 +889053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665154,6 +889107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665173,6 +889129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665252,6 +889211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665271,6 +889233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665322,6 +889287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665341,6 +889309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665420,6 +889391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665439,6 +889413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665490,6 +889467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665509,6 +889489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665588,6 +889571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665607,6 +889593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665658,6 +889647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665677,6 +889669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665756,6 +889751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665775,6 +889773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665826,6 +889827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665845,6 +889849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665924,6 +889931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -665943,6 +889953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -665994,6 +890007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666013,6 +890029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666092,6 +890111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666111,6 +890133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666162,6 +890187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666181,6 +890209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666260,6 +890291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666279,6 +890313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666330,6 +890367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666349,6 +890389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666428,6 +890471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666447,6 +890493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666498,6 +890547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666517,6 +890569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666596,6 +890651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666615,6 +890673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666666,6 +890727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666685,6 +890749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666764,6 +890831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666783,6 +890853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666834,6 +890907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666853,6 +890929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -666932,6 +891011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -666951,6 +891033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667002,6 +891087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667021,6 +891109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667100,6 +891191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667119,6 +891213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667170,6 +891267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667189,6 +891289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667268,6 +891371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667287,6 +891393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667338,6 +891447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667357,6 +891469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667436,6 +891551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667455,6 +891573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667506,6 +891627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667525,6 +891649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667604,6 +891731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667623,6 +891753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667674,6 +891807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667693,6 +891829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667772,6 +891911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667791,6 +891933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667842,6 +891987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667861,6 +892009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -667940,6 +892091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -667959,6 +892113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668010,6 +892167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668029,6 +892189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668108,6 +892271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668127,6 +892293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668178,6 +892347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668197,6 +892369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668276,6 +892451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668295,6 +892473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668346,6 +892527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668365,6 +892549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668444,6 +892631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668463,6 +892653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668514,6 +892707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668533,6 +892729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668612,6 +892811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668631,6 +892833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668682,6 +892887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668701,6 +892909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668780,6 +892991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668799,6 +893013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668850,6 +893067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668869,6 +893089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -668948,6 +893171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -668967,6 +893193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669018,6 +893247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669037,6 +893269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669116,6 +893351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669135,6 +893373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669186,6 +893427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669205,6 +893449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669284,6 +893531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669303,6 +893553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669354,6 +893607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669373,6 +893629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669452,6 +893711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669471,6 +893733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669522,6 +893787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669541,6 +893809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669620,6 +893891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669639,6 +893913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669690,6 +893967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669709,6 +893989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669788,6 +894071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669807,6 +894093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669858,6 +894147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669877,6 +894169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -669956,6 +894251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -669975,6 +894273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670026,6 +894327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670045,6 +894349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670124,6 +894431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670143,6 +894453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670194,6 +894507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670213,6 +894529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670292,6 +894611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670311,6 +894633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670362,6 +894687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670381,6 +894709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670460,6 +894791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670479,6 +894813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670530,6 +894867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670549,6 +894889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670628,6 +894971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670647,6 +894993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670698,6 +895047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670717,6 +895069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670796,6 +895151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670815,6 +895173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670866,6 +895227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670885,6 +895249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -670964,6 +895331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -670983,6 +895353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671034,6 +895407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671053,6 +895429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671132,6 +895511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671151,6 +895533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671202,6 +895587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671221,6 +895609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671300,6 +895691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671319,6 +895713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671370,6 +895767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671389,6 +895789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671468,6 +895871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671487,6 +895893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671538,6 +895947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671557,6 +895969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671636,6 +896051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671655,6 +896073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671706,6 +896127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671725,6 +896149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671804,6 +896231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671823,6 +896253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671874,6 +896307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671893,6 +896329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -671972,6 +896411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -671991,6 +896433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672042,6 +896487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672061,6 +896509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672140,6 +896591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672159,6 +896613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672210,6 +896667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672229,6 +896689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672308,6 +896771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672327,6 +896793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672378,6 +896847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672397,6 +896869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672476,6 +896951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672495,6 +896973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672546,6 +897027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672565,6 +897049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672644,6 +897131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672663,6 +897153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672714,6 +897207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672733,6 +897229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672812,6 +897311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672831,6 +897333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672882,6 +897387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672901,6 +897409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -672980,6 +897491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -672999,6 +897513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673050,6 +897567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673069,6 +897589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673148,6 +897671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673167,6 +897693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673218,6 +897747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673237,6 +897769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673316,6 +897851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673335,6 +897873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673386,6 +897927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673405,6 +897949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673484,6 +898031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673503,6 +898053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673554,6 +898107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673573,6 +898129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673652,6 +898211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673671,6 +898233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673722,6 +898287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673741,6 +898309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673820,6 +898391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673839,6 +898413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673890,6 +898467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -673909,6 +898489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -673988,6 +898571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674007,6 +898593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674058,6 +898647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674077,6 +898669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674156,6 +898751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674175,6 +898773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674226,6 +898827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674245,6 +898849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674324,6 +898931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674343,6 +898953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674394,6 +899007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674413,6 +899029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674492,6 +899111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674511,6 +899133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674562,6 +899187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674581,6 +899209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674660,6 +899291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674679,6 +899313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674730,6 +899367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674749,6 +899389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674828,6 +899471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674847,6 +899493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674898,6 +899547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -674917,6 +899569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -674996,6 +899651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675015,6 +899673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675066,6 +899727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675085,6 +899749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675164,6 +899831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675183,6 +899853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675234,6 +899907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675253,6 +899929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675332,6 +900011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675351,6 +900033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675402,6 +900087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675421,6 +900109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675500,6 +900191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675519,6 +900213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675570,6 +900267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675589,6 +900289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675668,6 +900371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675687,6 +900393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675738,6 +900447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675757,6 +900469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675836,6 +900551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675855,6 +900573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -675906,6 +900627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -675925,6 +900649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676004,6 +900731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676023,6 +900753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676074,6 +900807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676093,6 +900829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676172,6 +900911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676191,6 +900933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676242,6 +900987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676261,6 +901009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676340,6 +901091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676359,6 +901113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676410,6 +901167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676429,6 +901189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676508,6 +901271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676527,6 +901293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676578,6 +901347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676597,6 +901369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676676,6 +901451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676695,6 +901473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676746,6 +901527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676765,6 +901549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676844,6 +901631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676863,6 +901653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -676914,6 +901707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -676933,6 +901729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677012,6 +901811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677031,6 +901833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677082,6 +901887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677101,6 +901909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677180,6 +901991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677199,6 +902013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677250,6 +902067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677269,6 +902089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677348,6 +902171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677367,6 +902193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677418,6 +902247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677437,6 +902269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677516,6 +902351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677535,6 +902373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677586,6 +902427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677605,6 +902449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677684,6 +902531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677703,6 +902553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677754,6 +902607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677773,6 +902629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677852,6 +902711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677871,6 +902733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -677922,6 +902787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -677941,6 +902809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678020,6 +902891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678039,6 +902913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678090,6 +902967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678109,6 +902989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678188,6 +903071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678207,6 +903093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678258,6 +903147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678277,6 +903169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678356,6 +903251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678375,6 +903273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678426,6 +903327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678445,6 +903349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678524,6 +903431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678543,6 +903453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678594,6 +903507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678613,6 +903529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678692,6 +903611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678711,6 +903633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678762,6 +903687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678781,6 +903709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678860,6 +903791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678879,6 +903813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -678930,6 +903867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -678949,6 +903889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679028,6 +903971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679047,6 +903993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679098,6 +904047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679117,6 +904069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679196,6 +904151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679215,6 +904173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679266,6 +904227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679285,6 +904249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679364,6 +904331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679383,6 +904353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679434,6 +904407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679453,6 +904429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679532,6 +904511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679551,6 +904533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679602,6 +904587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679621,6 +904609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679700,6 +904691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679719,6 +904713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679770,6 +904767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679789,6 +904789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679868,6 +904871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679887,6 +904893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -679938,6 +904947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -679957,6 +904969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680036,6 +905051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680055,6 +905073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680106,6 +905127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680125,6 +905149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680204,6 +905231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680223,6 +905253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680274,6 +905307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680293,6 +905329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680372,6 +905411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680391,6 +905433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680442,6 +905487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680461,6 +905509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680540,6 +905591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680559,6 +905613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680610,6 +905667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680629,6 +905689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680708,6 +905771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680727,6 +905793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680778,6 +905847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680797,6 +905869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680876,6 +905951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680895,6 +905973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -680946,6 +906027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -680965,6 +906049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681044,6 +906131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681063,6 +906153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681114,6 +906207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681133,6 +906229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681212,6 +906311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681231,6 +906333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681282,6 +906387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681301,6 +906409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681380,6 +906491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681399,6 +906513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681450,6 +906567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681469,6 +906589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681548,6 +906671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681567,6 +906693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681618,6 +906747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681637,6 +906769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681716,6 +906851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681735,6 +906873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681786,6 +906927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681805,6 +906949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681884,6 +907031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681903,6 +907053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -681954,6 +907107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -681973,6 +907129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682052,6 +907211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682071,6 +907233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682122,6 +907287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682141,6 +907309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682220,6 +907391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682239,6 +907413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682290,6 +907467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682309,6 +907489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682388,6 +907571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682407,6 +907593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682458,6 +907647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682477,6 +907669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682556,6 +907751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682575,6 +907773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682626,6 +907827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682645,6 +907849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682724,6 +907931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682743,6 +907953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682794,6 +908007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682813,6 +908029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682892,6 +908111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682911,6 +908133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -682962,6 +908187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -682981,6 +908209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683060,6 +908291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683079,6 +908313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683130,6 +908367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683149,6 +908389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683228,6 +908471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683247,6 +908493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683298,6 +908547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683317,6 +908569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683396,6 +908651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683415,6 +908673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683466,6 +908727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683485,6 +908749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683564,6 +908831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683583,6 +908853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683634,6 +908907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683653,6 +908929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683732,6 +909011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683751,6 +909033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683802,6 +909087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683821,6 +909109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683900,6 +909191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683919,6 +909213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -683970,6 +909267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -683989,6 +909289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684068,6 +909371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684087,6 +909393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684138,6 +909447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684157,6 +909469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684236,6 +909551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684255,6 +909573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684306,6 +909627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684325,6 +909649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684404,6 +909731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684423,6 +909753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684474,6 +909807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684493,6 +909829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684572,6 +909911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684591,6 +909933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684642,6 +909987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684661,6 +910009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684740,6 +910091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684759,6 +910113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684810,6 +910167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684829,6 +910189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684908,6 +910271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684927,6 +910293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -684978,6 +910347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -684997,6 +910369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685076,6 +910451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685095,6 +910473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685146,6 +910527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685165,6 +910549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685244,6 +910631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685263,6 +910653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685314,6 +910707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685333,6 +910729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685412,6 +910811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685431,6 +910833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685482,6 +910887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685501,6 +910909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685580,6 +910991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685599,6 +911013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685650,6 +911067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685669,6 +911089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685748,6 +911171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685767,6 +911193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685818,6 +911247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685837,6 +911269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685916,6 +911351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -685935,6 +911373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -685986,6 +911427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686005,6 +911449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686084,6 +911531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686103,6 +911553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686154,6 +911607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686173,6 +911629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686252,6 +911711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686271,6 +911733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686322,6 +911787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686341,6 +911809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686420,6 +911891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686439,6 +911913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686490,6 +911967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686509,6 +911989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686588,6 +912071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686607,6 +912093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686658,6 +912147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686677,6 +912169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686756,6 +912251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686775,6 +912273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686826,6 +912327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686845,6 +912349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686924,6 +912431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -686943,6 +912453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -686994,6 +912507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687013,6 +912529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687092,6 +912611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687111,6 +912633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687162,6 +912687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687181,6 +912709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687260,6 +912791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687279,6 +912813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687330,6 +912867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687349,6 +912889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687428,6 +912971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687447,6 +912993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687498,6 +913047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687517,6 +913069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687596,6 +913151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687615,6 +913173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687666,6 +913227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687685,6 +913249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687764,6 +913331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687783,6 +913353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687834,6 +913407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687853,6 +913429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -687932,6 +913511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -687951,6 +913533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688002,6 +913587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688021,6 +913609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688100,6 +913691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688119,6 +913713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688170,6 +913767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688189,6 +913789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688268,6 +913871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688287,6 +913893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688338,6 +913947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688357,6 +913969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688436,6 +914051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688455,6 +914073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688506,6 +914127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688525,6 +914149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688604,6 +914231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688623,6 +914253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688674,6 +914307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688693,6 +914329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688772,6 +914411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688791,6 +914433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688842,6 +914487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688861,6 +914509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -688940,6 +914591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -688959,6 +914613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689010,6 +914667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689029,6 +914689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689108,6 +914771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689127,6 +914793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689178,6 +914847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689197,6 +914869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689276,6 +914951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689295,6 +914973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689346,6 +915027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689365,6 +915049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689444,6 +915131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689463,6 +915153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689514,6 +915207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689533,6 +915229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689612,6 +915311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689631,6 +915333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689682,6 +915387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689701,6 +915409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689780,6 +915491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689799,6 +915513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689850,6 +915567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689869,6 +915589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -689948,6 +915671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -689967,6 +915693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690018,6 +915747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690037,6 +915769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690116,6 +915851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690135,6 +915873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690186,6 +915927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690205,6 +915949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690284,6 +916031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690303,6 +916053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690354,6 +916107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690373,6 +916129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690452,6 +916211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690471,6 +916233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690522,6 +916287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690541,6 +916309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690620,6 +916391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690639,6 +916413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690690,6 +916467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690709,6 +916489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690788,6 +916571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690807,6 +916593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690858,6 +916647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690877,6 +916669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -690956,6 +916751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -690975,6 +916773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691026,6 +916827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691045,6 +916849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691124,6 +916931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691143,6 +916953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691194,6 +917007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691213,6 +917029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691292,6 +917111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691311,6 +917133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691362,6 +917187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691381,6 +917209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691460,6 +917291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691479,6 +917313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691530,6 +917367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691549,6 +917389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691628,6 +917471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691647,6 +917493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691698,6 +917547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691717,6 +917569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691796,6 +917651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691815,6 +917673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691866,6 +917727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691885,6 +917749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -691964,6 +917831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -691983,6 +917853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692034,6 +917907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692053,6 +917929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692132,6 +918011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692151,6 +918033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692202,6 +918087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692221,6 +918109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692300,6 +918191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692319,6 +918213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692370,6 +918267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692389,6 +918289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692468,6 +918371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692487,6 +918393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692538,6 +918447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692557,6 +918469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692636,6 +918551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692655,6 +918573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692706,6 +918627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692725,6 +918649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692804,6 +918731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692823,6 +918753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692874,6 +918807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692893,6 +918829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -692972,6 +918911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -692991,6 +918933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693042,6 +918987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693061,6 +919009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693140,6 +919091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693159,6 +919113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693210,6 +919167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693229,6 +919189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693308,6 +919271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693327,6 +919293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693378,6 +919347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693397,6 +919369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693476,6 +919451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693495,6 +919473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693546,6 +919527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693565,6 +919549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693644,6 +919631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693663,6 +919653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693714,6 +919707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693733,6 +919729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693812,6 +919811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693831,6 +919833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693882,6 +919887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693901,6 +919909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -693980,6 +919991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -693999,6 +920013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694050,6 +920067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694069,6 +920089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694148,6 +920171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694167,6 +920193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694218,6 +920247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694237,6 +920269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694316,6 +920351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694335,6 +920373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694386,6 +920427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694405,6 +920449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694484,6 +920531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694503,6 +920553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694554,6 +920607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694573,6 +920629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694652,6 +920711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694671,6 +920733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694722,6 +920787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694741,6 +920809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694820,6 +920891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694839,6 +920913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694890,6 +920967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -694909,6 +920989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -694988,6 +921071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695007,6 +921093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695058,6 +921147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695077,6 +921169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695156,6 +921251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695175,6 +921273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695226,6 +921327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695245,6 +921349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695324,6 +921431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695343,6 +921453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695394,6 +921507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695413,6 +921529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695492,6 +921611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695511,6 +921633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695562,6 +921687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695581,6 +921709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695660,6 +921791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695679,6 +921813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695730,6 +921867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695749,6 +921889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695828,6 +921971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695847,6 +921993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695898,6 +922047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -695917,6 +922069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -695996,6 +922151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696015,6 +922173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696066,6 +922227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696085,6 +922249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696164,6 +922331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696183,6 +922353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696234,6 +922407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696253,6 +922429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696332,6 +922511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696351,6 +922533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696402,6 +922587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696421,6 +922609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696500,6 +922691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696519,6 +922713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696570,6 +922767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696589,6 +922789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696668,6 +922871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696687,6 +922893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696738,6 +922947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696757,6 +922969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696836,6 +923051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696855,6 +923073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -696906,6 +923127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -696925,6 +923149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697004,6 +923231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697023,6 +923253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697074,6 +923307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697093,6 +923329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697172,6 +923411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697191,6 +923433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697242,6 +923487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697261,6 +923509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697340,6 +923591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697359,6 +923613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697410,6 +923667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697429,6 +923689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697508,6 +923771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697527,6 +923793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697578,6 +923847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697597,6 +923869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697676,6 +923951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697695,6 +923973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697746,6 +924027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697765,6 +924049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697844,6 +924131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697863,6 +924153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -697914,6 +924207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -697933,6 +924229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698012,6 +924311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698031,6 +924333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698082,6 +924387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698101,6 +924409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698180,6 +924491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698199,6 +924513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698250,6 +924567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698269,6 +924589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698348,6 +924671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698367,6 +924693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698418,6 +924747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698437,6 +924769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698516,6 +924851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698535,6 +924873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698586,6 +924927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698605,6 +924949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698684,6 +925031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698703,6 +925053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698754,6 +925107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698773,6 +925129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698852,6 +925211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698871,6 +925233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -698922,6 +925287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -698941,6 +925309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699020,6 +925391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699039,6 +925413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699090,6 +925467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699109,6 +925489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699188,6 +925571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699207,6 +925593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699258,6 +925647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699277,6 +925669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699356,6 +925751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699375,6 +925773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699426,6 +925827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699445,6 +925849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699524,6 +925931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699543,6 +925953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699594,6 +926007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699613,6 +926029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699692,6 +926111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699711,6 +926133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699762,6 +926187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699781,6 +926209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699860,6 +926291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699879,6 +926313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -699930,6 +926367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -699949,6 +926389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700028,6 +926471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700047,6 +926493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700098,6 +926547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700117,6 +926569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700196,6 +926651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700215,6 +926673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700266,6 +926727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700285,6 +926749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700364,6 +926831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700383,6 +926853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700434,6 +926907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700453,6 +926929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700532,6 +927011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700551,6 +927033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700602,6 +927087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700621,6 +927109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700700,6 +927191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700719,6 +927213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700770,6 +927267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700789,6 +927289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700868,6 +927371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700887,6 +927393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -700938,6 +927447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -700957,6 +927469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701036,6 +927551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701055,6 +927573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701106,6 +927627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701125,6 +927649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701204,6 +927731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701223,6 +927753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701274,6 +927807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701293,6 +927829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701372,6 +927911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701391,6 +927933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701442,6 +927987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701461,6 +928009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701540,6 +928091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701559,6 +928113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701610,6 +928167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701629,6 +928189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701708,6 +928271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701727,6 +928293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701778,6 +928347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701797,6 +928369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701876,6 +928451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701895,6 +928473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -701946,6 +928527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -701965,6 +928549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702044,6 +928631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702063,6 +928653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702114,6 +928707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702133,6 +928729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702212,6 +928811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702231,6 +928833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702282,6 +928887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702301,6 +928909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702380,6 +928991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702399,6 +929013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702450,6 +929067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702469,6 +929089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702548,6 +929171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702567,6 +929193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702618,6 +929247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702637,6 +929269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702716,6 +929351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702735,6 +929373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702786,6 +929427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702805,6 +929449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702884,6 +929531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702903,6 +929553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -702954,6 +929607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -702973,6 +929629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703052,6 +929711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703071,6 +929733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703122,6 +929787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703141,6 +929809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703220,6 +929891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703239,6 +929913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703290,6 +929967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703309,6 +929989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703388,6 +930071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703407,6 +930093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703458,6 +930147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703477,6 +930169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703556,6 +930251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703575,6 +930273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703626,6 +930327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703645,6 +930349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703724,6 +930431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703743,6 +930453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703794,6 +930507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703813,6 +930529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703892,6 +930611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703911,6 +930633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -703962,6 +930687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -703981,6 +930709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704060,6 +930791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704079,6 +930813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704130,6 +930867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704149,6 +930889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704228,6 +930971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704247,6 +930993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704298,6 +931047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704317,6 +931069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704396,6 +931151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704415,6 +931173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704466,6 +931227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704485,6 +931249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704564,6 +931331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704583,6 +931353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704634,6 +931407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704653,6 +931429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704732,6 +931511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704751,6 +931533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704802,6 +931587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704821,6 +931609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704900,6 +931691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704919,6 +931713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -704970,6 +931767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -704989,6 +931789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705068,6 +931871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705087,6 +931893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705138,6 +931947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705157,6 +931969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705236,6 +932051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705255,6 +932073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705306,6 +932127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705325,6 +932149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705404,6 +932231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705423,6 +932253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705474,6 +932307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705493,6 +932329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705572,6 +932411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705591,6 +932433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705642,6 +932487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705661,6 +932509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705740,6 +932591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705759,6 +932613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705810,6 +932667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705829,6 +932689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705908,6 +932771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705927,6 +932793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -705978,6 +932847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -705997,6 +932869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706076,6 +932951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706095,6 +932973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706146,6 +933027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706165,6 +933049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706244,6 +933131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706263,6 +933153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706314,6 +933207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706333,6 +933229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706412,6 +933311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706431,6 +933333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706482,6 +933387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706501,6 +933409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706580,6 +933491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706599,6 +933513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706650,6 +933567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706669,6 +933589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706748,6 +933671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706767,6 +933693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706818,6 +933747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706837,6 +933769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706916,6 +933851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -706935,6 +933873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -706986,6 +933927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707005,6 +933949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707084,6 +934031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707103,6 +934053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707154,6 +934107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707173,6 +934129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707252,6 +934211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707271,6 +934233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707322,6 +934287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707341,6 +934309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707420,6 +934391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707439,6 +934413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707490,6 +934467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707509,6 +934489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707588,6 +934571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707607,6 +934593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707658,6 +934647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707677,6 +934669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707756,6 +934751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707775,6 +934773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707826,6 +934827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707845,6 +934849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707924,6 +934931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -707943,6 +934953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -707994,6 +935007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708013,6 +935029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708092,6 +935111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708111,6 +935133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708162,6 +935187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708181,6 +935209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708260,6 +935291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708279,6 +935313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708330,6 +935367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708349,6 +935389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708428,6 +935471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708447,6 +935493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708498,6 +935547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708517,6 +935569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708596,6 +935651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708615,6 +935673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708666,6 +935727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708685,6 +935749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708764,6 +935831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708783,6 +935853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708834,6 +935907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708853,6 +935929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -708932,6 +936011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -708951,6 +936033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709002,6 +936087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709021,6 +936109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709100,6 +936191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709119,6 +936213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709170,6 +936267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709189,6 +936289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709268,6 +936371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709287,6 +936393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709338,6 +936447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709357,6 +936469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709436,6 +936551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709455,6 +936573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709506,6 +936627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709525,6 +936649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709604,6 +936731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709623,6 +936753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709674,6 +936807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709693,6 +936829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709772,6 +936911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709791,6 +936933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709842,6 +936987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709861,6 +937009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -709940,6 +937091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -709959,6 +937113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710010,6 +937167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710029,6 +937189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710108,6 +937271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710127,6 +937293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710178,6 +937347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710197,6 +937369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710276,6 +937451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710295,6 +937473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710346,6 +937527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710365,6 +937549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710444,6 +937631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710463,6 +937653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710514,6 +937707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710533,6 +937729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710612,6 +937811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710631,6 +937833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710682,6 +937887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710701,6 +937909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710780,6 +937991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710799,6 +938013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710850,6 +938067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710869,6 +938089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -710948,6 +938171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -710967,6 +938193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711018,6 +938247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711037,6 +938269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711116,6 +938351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711135,6 +938373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711186,6 +938427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711205,6 +938449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711284,6 +938531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711303,6 +938553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711354,6 +938607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711373,6 +938629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711452,6 +938711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711471,6 +938733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711522,6 +938787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711541,6 +938809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711620,6 +938891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711639,6 +938913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711690,6 +938967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711709,6 +938989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711788,6 +939071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711807,6 +939093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711858,6 +939147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711877,6 +939169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -711956,6 +939251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -711975,6 +939273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712026,6 +939327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712045,6 +939349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712124,6 +939431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712143,6 +939453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712194,6 +939507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712213,6 +939529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712292,6 +939611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712311,6 +939633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712362,6 +939687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712381,6 +939709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712460,6 +939791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712479,6 +939813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712530,6 +939867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712549,6 +939889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712628,6 +939971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712647,6 +939993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712698,6 +940047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712717,6 +940069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712796,6 +940151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712815,6 +940173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712866,6 +940227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712885,6 +940249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -712964,6 +940331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -712983,6 +940353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713034,6 +940407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713053,6 +940429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713132,6 +940511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713151,6 +940533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713202,6 +940587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713221,6 +940609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713300,6 +940691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713319,6 +940713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713370,6 +940767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713389,6 +940789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713468,6 +940871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713487,6 +940893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713538,6 +940947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713557,6 +940969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713636,6 +941051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713655,6 +941073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713706,6 +941127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713725,6 +941149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713804,6 +941231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713823,6 +941253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713874,6 +941307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713893,6 +941329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -713972,6 +941411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -713991,6 +941433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714042,6 +941487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714061,6 +941509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714140,6 +941591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714159,6 +941613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714210,6 +941667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714229,6 +941689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714308,6 +941771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714327,6 +941793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714378,6 +941847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714397,6 +941869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714476,6 +941951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714495,6 +941973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714546,6 +942027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714565,6 +942049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714644,6 +942131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714663,6 +942153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714714,6 +942207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714733,6 +942229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714812,6 +942311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714831,6 +942333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714882,6 +942387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714901,6 +942409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -714980,6 +942491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -714999,6 +942513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715050,6 +942567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715069,6 +942589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715148,6 +942671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715167,6 +942693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715218,6 +942747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715237,6 +942769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715316,6 +942851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715335,6 +942873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715386,6 +942927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715405,6 +942949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715484,6 +943031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715503,6 +943053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715554,6 +943107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715573,6 +943129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715652,6 +943211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715671,6 +943233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715722,6 +943287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715741,6 +943309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715820,6 +943391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715839,6 +943413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715890,6 +943467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -715909,6 +943489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -715988,6 +943571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716007,6 +943593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716058,6 +943647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716077,6 +943669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716156,6 +943751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716175,6 +943773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716226,6 +943827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716245,6 +943849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716324,6 +943931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716343,6 +943953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716394,6 +944007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716413,6 +944029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716492,6 +944111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716511,6 +944133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716562,6 +944187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716581,6 +944209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716660,6 +944291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716679,6 +944313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716730,6 +944367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716749,6 +944389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716828,6 +944471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716847,6 +944493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716898,6 +944547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -716917,6 +944569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -716996,6 +944651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717015,6 +944673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717066,6 +944727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717085,6 +944749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717164,6 +944831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717183,6 +944853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717234,6 +944907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717253,6 +944929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717332,6 +945011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717351,6 +945033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717402,6 +945087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717421,6 +945109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717500,6 +945191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717519,6 +945213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717570,6 +945267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717589,6 +945289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717668,6 +945371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717687,6 +945393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717738,6 +945447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717757,6 +945469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717836,6 +945551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717855,6 +945573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -717906,6 +945627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -717925,6 +945649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718004,6 +945731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718023,6 +945753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718074,6 +945807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718093,6 +945829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718172,6 +945911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718191,6 +945933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718242,6 +945987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718261,6 +946009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718340,6 +946091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718359,6 +946113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718410,6 +946167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718429,6 +946189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718508,6 +946271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718527,6 +946293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718578,6 +946347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718597,6 +946369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718676,6 +946451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718695,6 +946473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718746,6 +946527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718765,6 +946549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718844,6 +946631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718863,6 +946653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -718914,6 +946707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -718933,6 +946729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719012,6 +946811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719031,6 +946833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719082,6 +946887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719101,6 +946909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719180,6 +946991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719199,6 +947013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719250,6 +947067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719269,6 +947089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719348,6 +947171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719367,6 +947193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719418,6 +947247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719437,6 +947269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719516,6 +947351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719535,6 +947373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719586,6 +947427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719605,6 +947449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719684,6 +947531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719703,6 +947553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719754,6 +947607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719773,6 +947629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719852,6 +947711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719871,6 +947733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -719922,6 +947787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -719941,6 +947809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720020,6 +947891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720039,6 +947913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720090,6 +947967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720109,6 +947989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720188,6 +948071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720207,6 +948093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720258,6 +948147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720277,6 +948169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720356,6 +948251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720375,6 +948273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720426,6 +948327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720445,6 +948349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720524,6 +948431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720543,6 +948453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720594,6 +948507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720613,6 +948529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720692,6 +948611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720711,6 +948633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720762,6 +948687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720781,6 +948709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720860,6 +948791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720879,6 +948813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -720930,6 +948867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -720949,6 +948889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721028,6 +948971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721047,6 +948993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721098,6 +949047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721117,6 +949069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721196,6 +949151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721215,6 +949173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721266,6 +949227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721285,6 +949249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721364,6 +949331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721383,6 +949353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721434,6 +949407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721453,6 +949429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721532,6 +949511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721551,6 +949533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721602,6 +949587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721621,6 +949609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721700,6 +949691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721719,6 +949713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721770,6 +949767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721789,6 +949789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721868,6 +949871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721887,6 +949893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -721938,6 +949947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -721957,6 +949969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722036,6 +950051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722055,6 +950073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722106,6 +950127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722125,6 +950149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722204,6 +950231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722223,6 +950253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722274,6 +950307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722293,6 +950329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722372,6 +950411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722391,6 +950433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722442,6 +950487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722461,6 +950509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722540,6 +950591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722559,6 +950613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722610,6 +950667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722629,6 +950689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722708,6 +950771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722727,6 +950793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722778,6 +950847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722797,6 +950869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722876,6 +950951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722895,6 +950973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -722946,6 +951027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -722965,6 +951049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723044,6 +951131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723063,6 +951153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723114,6 +951207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723133,6 +951229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723212,6 +951311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723231,6 +951333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723282,6 +951387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723301,6 +951409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723380,6 +951491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723399,6 +951513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723450,6 +951567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723469,6 +951589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723548,6 +951671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723567,6 +951693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723618,6 +951747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723637,6 +951769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723716,6 +951851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723735,6 +951873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723786,6 +951927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723805,6 +951949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723884,6 +952031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723903,6 +952053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -723954,6 +952107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -723973,6 +952129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724052,6 +952211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724071,6 +952233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724122,6 +952287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724141,6 +952309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724220,6 +952391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724239,6 +952413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724290,6 +952467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724309,6 +952489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724388,6 +952571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724407,6 +952593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724458,6 +952647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724477,6 +952669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724556,6 +952751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724575,6 +952773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724626,6 +952827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724645,6 +952849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724724,6 +952931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724743,6 +952953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724794,6 +953007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724813,6 +953029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724892,6 +953111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724911,6 +953133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -724962,6 +953187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -724981,6 +953209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725060,6 +953291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725079,6 +953313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725130,6 +953367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725149,6 +953389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725228,6 +953471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725247,6 +953493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725298,6 +953547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725317,6 +953569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725396,6 +953651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725415,6 +953673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725466,6 +953727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725485,6 +953749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725564,6 +953831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725583,6 +953853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725634,6 +953907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725653,6 +953929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725732,6 +954011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725751,6 +954033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725802,6 +954087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725821,6 +954109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725900,6 +954191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725919,6 +954213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -725970,6 +954267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -725989,6 +954289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726068,6 +954371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726087,6 +954393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726138,6 +954447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726157,6 +954469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726236,6 +954551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726255,6 +954573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726306,6 +954627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726325,6 +954649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726404,6 +954731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726423,6 +954753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726474,6 +954807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726493,6 +954829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726572,6 +954911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726591,6 +954933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726642,6 +954987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726661,6 +955009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726740,6 +955091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726759,6 +955113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726810,6 +955167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726829,6 +955189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726908,6 +955271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726927,6 +955293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -726978,6 +955347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -726997,6 +955369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727076,6 +955451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727095,6 +955473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727146,6 +955527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727165,6 +955549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727244,6 +955631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727263,6 +955653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727314,6 +955707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727333,6 +955729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727412,6 +955811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727431,6 +955833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727482,6 +955887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727501,6 +955909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727580,6 +955991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727599,6 +956013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727650,6 +956067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727669,6 +956089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727748,6 +956171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727767,6 +956193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727818,6 +956247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727837,6 +956269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727916,6 +956351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -727935,6 +956373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -727986,6 +956427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728005,6 +956449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728084,6 +956531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728103,6 +956553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728154,6 +956607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728173,6 +956629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728252,6 +956711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728271,6 +956733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728322,6 +956787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728341,6 +956809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728420,6 +956891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728439,6 +956913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728490,6 +956967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728509,6 +956989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728588,6 +957071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728607,6 +957093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728658,6 +957147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728677,6 +957169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728756,6 +957251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728775,6 +957273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728826,6 +957327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728845,6 +957349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728924,6 +957431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -728943,6 +957453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -728994,6 +957507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729013,6 +957529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729092,6 +957611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729111,6 +957633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729162,6 +957687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729181,6 +957709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729260,6 +957791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729279,6 +957813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729330,6 +957867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729349,6 +957889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729428,6 +957971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729447,6 +957993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729498,6 +958047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729517,6 +958069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729596,6 +958151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729615,6 +958173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729666,6 +958227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729685,6 +958249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729764,6 +958331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729783,6 +958353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729834,6 +958407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729853,6 +958429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -729932,6 +958511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -729951,6 +958533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730002,6 +958587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730021,6 +958609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730100,6 +958691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730119,6 +958713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730170,6 +958767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730189,6 +958789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730268,6 +958871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730287,6 +958893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730338,6 +958947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730357,6 +958969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730436,6 +959051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730455,6 +959073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730506,6 +959127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730525,6 +959149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730604,6 +959231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730623,6 +959253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730674,6 +959307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730693,6 +959329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730772,6 +959411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730791,6 +959433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730842,6 +959487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730861,6 +959509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -730940,6 +959591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -730959,6 +959613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731010,6 +959667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731029,6 +959689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731108,6 +959771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731127,6 +959793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731178,6 +959847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731197,6 +959869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731276,6 +959951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731295,6 +959973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731346,6 +960027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731365,6 +960049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731444,6 +960131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731463,6 +960153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731514,6 +960207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731533,6 +960229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731612,6 +960311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731631,6 +960333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731682,6 +960387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731701,6 +960409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731780,6 +960491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731799,6 +960513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731850,6 +960567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731869,6 +960589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -731948,6 +960671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -731967,6 +960693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732018,6 +960747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732037,6 +960769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732116,6 +960851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732135,6 +960873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732186,6 +960927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732205,6 +960949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732284,6 +961031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732303,6 +961053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732354,6 +961107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732373,6 +961129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732452,6 +961211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732471,6 +961233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732522,6 +961287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732541,6 +961309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732620,6 +961391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732639,6 +961413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732690,6 +961467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732709,6 +961489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732788,6 +961571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732807,6 +961593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732858,6 +961647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732877,6 +961669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -732956,6 +961751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -732975,6 +961773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733026,6 +961827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733045,6 +961849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733124,6 +961931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733143,6 +961953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733194,6 +962007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733213,6 +962029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733292,6 +962111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733311,6 +962133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733362,6 +962187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733381,6 +962209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733460,6 +962291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733479,6 +962313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733530,6 +962367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733549,6 +962389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733628,6 +962471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733647,6 +962493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733698,6 +962547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733717,6 +962569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733796,6 +962651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733815,6 +962673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733866,6 +962727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733885,6 +962749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -733964,6 +962831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -733983,6 +962853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734034,6 +962907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734053,6 +962929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734132,6 +963011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734151,6 +963033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734202,6 +963087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734221,6 +963109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734300,6 +963191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734319,6 +963213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734370,6 +963267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734389,6 +963289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734468,6 +963371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734487,6 +963393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734538,6 +963447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734557,6 +963469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734636,6 +963551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734655,6 +963573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734706,6 +963627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734725,6 +963649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734804,6 +963731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734823,6 +963753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734874,6 +963807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734893,6 +963829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -734972,6 +963911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -734991,6 +963933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735042,6 +963987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735061,6 +964009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735140,6 +964091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735159,6 +964113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735210,6 +964167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735229,6 +964189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735308,6 +964271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735327,6 +964293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735378,6 +964347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735397,6 +964369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735476,6 +964451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735495,6 +964473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735546,6 +964527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735565,6 +964549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735644,6 +964631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735663,6 +964653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735714,6 +964707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735733,6 +964729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735812,6 +964811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735831,6 +964833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735882,6 +964887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735901,6 +964909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -735980,6 +964991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -735999,6 +965013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736050,6 +965067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736069,6 +965089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736148,6 +965171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736167,6 +965193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736218,6 +965247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736237,6 +965269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736316,6 +965351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736335,6 +965373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736386,6 +965427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736405,6 +965449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736484,6 +965531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736503,6 +965553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736554,6 +965607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736573,6 +965629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736652,6 +965711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736671,6 +965733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736722,6 +965787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736741,6 +965809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736820,6 +965891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736839,6 +965913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736890,6 +965967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -736909,6 +965989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -736988,6 +966071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737007,6 +966093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737058,6 +966147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737077,6 +966169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737156,6 +966251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737175,6 +966273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737226,6 +966327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737245,6 +966349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737324,6 +966431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737343,6 +966453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737394,6 +966507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737413,6 +966529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737492,6 +966611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737511,6 +966633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737562,6 +966687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737581,6 +966709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737660,6 +966791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737679,6 +966813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737730,6 +966867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737749,6 +966889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737828,6 +966971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737847,6 +966993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737898,6 +967047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -737917,6 +967069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -737996,6 +967151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738015,6 +967173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738066,6 +967227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738085,6 +967249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738164,6 +967331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738183,6 +967353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738234,6 +967407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738253,6 +967429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738332,6 +967511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738351,6 +967533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738402,6 +967587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738421,6 +967609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738500,6 +967691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738519,6 +967713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738570,6 +967767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738589,6 +967789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738668,6 +967871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738687,6 +967893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738738,6 +967947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738757,6 +967969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738836,6 +968051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738855,6 +968073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -738906,6 +968127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -738925,6 +968149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739004,6 +968231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739023,6 +968253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739074,6 +968307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739093,6 +968329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739172,6 +968411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739191,6 +968433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739242,6 +968487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739261,6 +968509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739340,6 +968591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739359,6 +968613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739410,6 +968667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739429,6 +968689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739508,6 +968771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739527,6 +968793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739578,6 +968847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739597,6 +968869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739676,6 +968951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739695,6 +968973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739746,6 +969027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739765,6 +969049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739844,6 +969131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739863,6 +969153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -739914,6 +969207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -739933,6 +969229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740012,6 +969311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740031,6 +969333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740082,6 +969387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740101,6 +969409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740180,6 +969491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740199,6 +969513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740250,6 +969567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740269,6 +969589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740348,6 +969671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740367,6 +969693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740418,6 +969747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740437,6 +969769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740516,6 +969851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740535,6 +969873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740586,6 +969927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740605,6 +969949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740684,6 +970031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740703,6 +970053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740754,6 +970107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740773,6 +970129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740852,6 +970211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740871,6 +970233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -740922,6 +970287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -740941,6 +970309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741020,6 +970391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741039,6 +970413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741090,6 +970467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741109,6 +970489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741188,6 +970571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741207,6 +970593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741258,6 +970647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741277,6 +970669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741356,6 +970751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741375,6 +970773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741426,6 +970827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741445,6 +970849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741524,6 +970931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741543,6 +970953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741594,6 +971007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741613,6 +971029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741692,6 +971111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741711,6 +971133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741762,6 +971187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741781,6 +971209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741860,6 +971291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741879,6 +971313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -741930,6 +971367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -741949,6 +971389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742028,6 +971471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742047,6 +971493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742098,6 +971547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742117,6 +971569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742196,6 +971651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742215,6 +971673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742266,6 +971727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742285,6 +971749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742364,6 +971831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742383,6 +971853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742434,6 +971907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742453,6 +971929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742532,6 +972011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742551,6 +972033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742602,6 +972087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742621,6 +972109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742700,6 +972191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742719,6 +972213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742770,6 +972267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742789,6 +972289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742868,6 +972371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742887,6 +972393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -742938,6 +972447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -742957,6 +972469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743036,6 +972551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743055,6 +972573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743106,6 +972627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743125,6 +972649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743204,6 +972731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743223,6 +972753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743274,6 +972807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743293,6 +972829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743372,6 +972911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743391,6 +972933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743442,6 +972987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743461,6 +973009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743540,6 +973091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743559,6 +973113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743610,6 +973167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743629,6 +973189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743708,6 +973271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743727,6 +973293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743778,6 +973347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743797,6 +973369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743876,6 +973451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743895,6 +973473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -743946,6 +973527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -743965,6 +973549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744044,6 +973631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744063,6 +973653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744114,6 +973707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744133,6 +973729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744212,6 +973811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744231,6 +973833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744282,6 +973887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744301,6 +973909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744380,6 +973991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744399,6 +974013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744450,6 +974067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744469,6 +974089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744548,6 +974171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744567,6 +974193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744618,6 +974247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744637,6 +974269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744716,6 +974351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744735,6 +974373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744786,6 +974427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744805,6 +974449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744884,6 +974531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744903,6 +974553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -744954,6 +974607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -744973,6 +974629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745052,6 +974711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745071,6 +974733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745122,6 +974787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745141,6 +974809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745220,6 +974891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745239,6 +974913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745290,6 +974967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745309,6 +974989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745388,6 +975071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745407,6 +975093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745458,6 +975147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745477,6 +975169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745556,6 +975251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745575,6 +975273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745626,6 +975327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745645,6 +975349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745724,6 +975431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745743,6 +975453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745794,6 +975507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745813,6 +975529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745892,6 +975611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745911,6 +975633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -745962,6 +975687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -745981,6 +975709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746060,6 +975791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746079,6 +975813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746130,6 +975867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746149,6 +975889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746228,6 +975971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746247,6 +975993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746298,6 +976047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746317,6 +976069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746396,6 +976151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746415,6 +976173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746466,6 +976227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746485,6 +976249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746564,6 +976331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746583,6 +976353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746634,6 +976407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746653,6 +976429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746732,6 +976511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746751,6 +976533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746802,6 +976587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746821,6 +976609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746900,6 +976691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746919,6 +976713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -746970,6 +976767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -746989,6 +976789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747068,6 +976871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747087,6 +976893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747138,6 +976947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747157,6 +976969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747236,6 +977051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747255,6 +977073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747306,6 +977127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747325,6 +977149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747404,6 +977231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747423,6 +977253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747474,6 +977307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747493,6 +977329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747572,6 +977411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747591,6 +977433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747642,6 +977487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747661,6 +977509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747740,6 +977591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747759,6 +977613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747810,6 +977667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747829,6 +977689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747908,6 +977771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747927,6 +977793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -747978,6 +977847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -747997,6 +977869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -748413,6 +978288,46 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 988905378} m_CullTransparentMesh: 0 +--- !u!1 &989549432 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 989549433} + m_Layer: 0 + m_Name: tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &989549433 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 989549432} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1248113496} + - {fileID: 505434491} + - {fileID: 45451824} + - {fileID: 1149057101} + - {fileID: 301088169} + m_Father: {fileID: 1070880691} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &989688943 GameObject: m_ObjectHideFlags: 0 @@ -749530,6 +979445,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 996729632} m_CullTransparentMesh: 0 +--- !u!1 &997741616 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 997741617} + - component: {fileID: 997741619} + - component: {fileID: 997741618} + m_Layer: 0 + m_Name: painter_t + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &997741617 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 997741616} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &997741618 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 997741616} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &997741619 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 997741616} + m_CullTransparentMesh: 0 --- !u!1 &997802968 GameObject: m_ObjectHideFlags: 0 @@ -750370,6 +980349,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -750403,6 +980388,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -750441,6 +980427,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -750668,6 +980655,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -750861,6 +980849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -750880,6 +980871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -750930,6 +980924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -750949,6 +980946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751038,6 +981038,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751057,6 +981060,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751108,6 +981114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751127,6 +981136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751205,6 +981217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751224,6 +981239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751275,6 +981293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751294,6 +981315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751372,6 +981396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751391,6 +981418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751442,6 +981472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751461,6 +981494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751539,6 +981575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751558,6 +981597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751609,6 +981651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751628,6 +981673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751706,6 +981754,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751725,6 +981776,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -751776,6 +981830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -751795,6 +981852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -753385,6 +983445,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -753418,6 +983484,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -753456,6 +983523,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -753683,6 +983751,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -753876,6 +983945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -753895,6 +983967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -753945,6 +984020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -753964,6 +984042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -754053,6 +984134,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -754072,6 +984156,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -754123,6 +984210,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -754142,6 +984232,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -757893,6 +987986,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1028025874} m_CullTransparentMesh: 0 +--- !u!1 &1028201018 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1028201019} + - component: {fileID: 1028201021} + - component: {fileID: 1028201020} + m_Layer: 0 + m_Name: axis_x4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1028201019 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1028201018} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1321135645} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 756.987, y: -379} + m_SizeDelta: {x: 154.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1028201020 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1028201018} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 619 +--- !u!222 &1028201021 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1028201018} + m_CullTransparentMesh: 0 --- !u!1 &1029418628 GameObject: m_ObjectHideFlags: 0 @@ -758405,6 +988576,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1031691689} m_CullTransparentMesh: 0 +--- !u!1 &1031766948 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1031766949} + - component: {fileID: 1031766951} + - component: {fileID: 1031766950} + m_Layer: 0 + m_Name: painter_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1031766949 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031766948} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1031766950 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031766948} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1031766951 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031766948} + m_CullTransparentMesh: 0 --- !u!1 &1031860747 GameObject: m_ObjectHideFlags: 1 @@ -758729,6 +988964,1971 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1033575165 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1033575168} + - component: {fileID: 1033575167} + - component: {fileID: 1033575166} + m_Layer: 0 + m_Name: CandlestickChart (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1033575166 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1033575165} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b64f0bb738cc4acfa72fff2c30212b4, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_MultiComponentMode: 0 + m_DebugMode: 0 + m_EnableTextMeshPro: 0 + m_Background: + m_Show: 0 + m_Image: {fileID: 0} + m_ImageType: 1 + m_ImageColor: {r: 1, g: 1, b: 1, a: 1} + m_HideThemeBackgroundColor: 1 + m_ChartName: + m_Theme: {fileID: 575266801} + m_Settings: + m_MaxPainter: 10 + m_LineSmoothStyle: 3 + m_LineSmoothness: 2 + m_LineSegmentDistance: 3 + m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 + m_Titles: + - m_Show: 1 + m_Text: Base Candlestick + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 1 + m_SubText: + m_SubTextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 1 + m_ItemGap: 0 + m_Location: + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 5 + m_Bottom: 0 + m_Legends: + - m_Show: 0 + m_IconType: 0 + m_SelectedMode: 0 + m_Orient: 0 + m_Location: + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 35 + m_Bottom: 0 + m_ItemWidth: 25 + m_ItemHeight: 12 + m_ItemGap: 10 + m_ItemAutoColor: 1 + m_Formatter: + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 2, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_Data: [] + m_Icons: [] + m_Tooltips: + - m_Show: 1 + m_Type: 3 + m_Formatter: + m_ItemFormatter: + m_TitleFormatter: + m_FixedWidth: 0 + m_FixedHeight: 0 + m_MinWidth: 0 + m_MinHeight: 0 + m_NumericFormatter: + m_PaddingLeftRight: 5 + m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 + m_IgnoreDataDefaultContent: '-' + m_AlwayShow: 0 + m_Offset: {x: 18, y: -25} + m_BackgroundImage: {fileID: 0} + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Grids: + - m_Show: 1 + m_Left: 50 + m_Right: 30 + m_Top: 50 + m_Bottom: 30 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_XAxes: + - m_Show: 1 + m_Type: 1 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 2 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: + - 2020-10-24 + - 2020-10-25 + - 2020-10-26 + - 2020-10-27 + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 0 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + - m_Show: 0 + m_Type: 1 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 3 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 0 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + m_YAxes: + - m_Show: 1 + m_Type: 0 + m_MinMaxType: 2 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 0 + m_Offset: 0 + m_Min: 0 + m_Max: 50 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + - m_Show: 0 + m_Type: 0 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 1 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + m_DataZooms: + - m_Enable: 0 + m_FilterMode: 3 + m_XAxisIndexs: 00000000 + m_YAxisIndexs: + m_SupportInside: 1 + m_SupportSlider: 1 + m_SupportSelect: 0 + m_ShowDataShadow: 1 + m_ShowDetail: 0 + m_ZoomLock: 0 + m_Realtime: 0 + m_FillerColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderWidth: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_Left: 10 + m_Right: 10 + m_Top: 0.9 + m_Bottom: 10 + m_RangeMode: 0 + m_Start: 30 + m_End: 70 + m_StartValue: 0 + m_EndValue: 0 + m_MinShowNum: 1 + m_ScrollSensitivity: 10 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 0.3 + m_AreaStyle: + m_Show: 1 + m_Origin: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_Opacity: 0.3 + m_TooltipHighlight: 0 + m_HighlightColor: + serializedVersion: 2 + rgba: 0 + m_HighlightToColor: + serializedVersion: 2 + rgba: 0 + m_VisualMaps: + - m_Enable: 0 + m_Show: 1 + m_Type: 0 + m_Direction: 0 + m_SelectedMode: 0 + m_Min: 0 + m_Max: 100 + m_Range: + - 0 + - 100 + m_Text: + - + - + m_TextGap: + - 10 + - 10 + m_SplitNumber: 5 + m_Calculable: 0 + m_Realtime: 1 + m_ItemWidth: 20 + m_ItemHeight: 140 + m_BorderWidth: 0 + m_Dimension: -1 + m_HoverLink: 1 + m_AutoMinMax: 1 + m_Orient: 0 + m_Location: + m_Align: 7 + m_Left: 5 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_InRange: [] + m_OutOfRange: [] + m_Vessels: [] + m_Polars: [] + m_RadiusAxes: [] + m_AngleAxes: [] + m_Radars: [] + m_Series: + m_Series: + - m_Show: 1 + m_Type: 10 + m_Name: serie1 + m_Stack: + m_XAxisIndex: 0 + m_YAxisIndex: 0 + m_RadarIndex: 0 + m_VesselIndex: 0 + m_PolarIndex: 0 + m_MinShow: 0 + m_MaxShow: 0 + m_MaxCache: 0 + m_AreaStyle: + m_Show: 0 + m_Origin: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_Opacity: 0.6 + m_TooltipHighlight: 0 + m_HighlightColor: + serializedVersion: 2 + rgba: 0 + m_HighlightToColor: + serializedVersion: 2 + rgba: 0 + m_Symbol: + m_Show: 0 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 0 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_BarType: 0 + m_BarPercentStack: 0 + m_BarWidth: 0.6 + m_BarGap: 0.3 + m_BarCategoryGap: 0.2 + m_BarZebraWidth: 4 + m_BarZebraGap: 2 + m_Min: 0 + m_Max: 0 + m_StartAngle: 0 + m_EndAngle: 0 + m_MinAngle: 0 + m_Clockwise: 1 + m_RoundCap: 0 + m_RingGap: 10 + m_SplitNumber: 0 + m_GaugeType: 0 + m_GaugeAxis: + m_Show: 1 + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_BarColor: + serializedVersion: 2 + rgba: 0 + m_BarBackgroundColor: + serializedVersion: 2 + rgba: 4291348680 + m_StageColor: + - m_Percent: 0.2 + m_Color: + serializedVersion: 2 + rgba: 4289644433 + - m_Percent: 0.8 + m_Color: + serializedVersion: 2 + rgba: 4288579171 + - m_Percent: 1 + m_Color: + serializedVersion: 2 + rgba: 4281415106 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_SplitNumber: 5 + m_AxisLabel: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisLabelText: [] + runtimeStageAngle: [] + runtimeLabelPosition: [] + m_GaugePointer: + m_Show: 1 + m_Length: 0.8 + m_Width: 15 + m_ClickOffset: 1 + m_RoseType: 0 + m_Space: 0 + m_Center: + - 0.5 + - 0.45 + m_Radius: + - 0 + - 80 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_Animation: + m_Enable: 1 + m_Easting: 0 + m_Threshold: 2000 + m_FadeInDuration: 1000 + m_FadeInDelay: 0 + m_FadeOutDuration: 1000 + m_FadeOutDelay: 0 + m_DataChangeEnable: 1 + m_DataChangeDuration: 500 + m_ActualDuration: 0 + m_CurrDetailProgress: 0 + m_DestDetailProgress: 1 + m_LineArrow: + m_Show: 0 + m_Position: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 4285559039 + m_Color0: + serializedVersion: 2 + rgba: 4294836070 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 4279045532 + m_BorderColor0: + serializedVersion: 2 + rgba: 4292696331 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_TitleStyle: + m_Show: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ShowDataDimension: 4 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Clip: 0 + m_Ignore: 0 + m_IgnoreValue: 0 + m_ShowAsPositiveNumber: 0 + m_Large: 1 + m_LargeThreshold: 200 + m_AvoidLabelOverlap: 0 + m_WaveHeight: 10 + m_WaveLength: 20 + m_WaveSpeed: 5 + m_WaveOffset: 0 + m_RadarType: 0 + m_Data: + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 20 + - 34 + - 10 + - 38 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 40 + - 35 + - 30 + - 50 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 31 + - 38 + - 33 + - 44 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 42 + - 15 + - 5 + - 45 +--- !u!222 &1033575167 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1033575165} + m_CullTransparentMesh: 0 +--- !u!224 &1033575168 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1033575165} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1096281562} + - {fileID: 1534759418} + - {fileID: 1151755840} + - {fileID: 959828633} + - {fileID: 276884178} + - {fileID: 2022711470} + - {fileID: 856576780} + - {fileID: 1277387633} + - {fileID: 446524920} + - {fileID: 2080070883} + - {fileID: 867274968} + - {fileID: 853836623} + - {fileID: 1322905225} + - {fileID: 150470113} + - {fileID: 2112010731} + - {fileID: 178133718} + - {fileID: 1293982805} + - {fileID: 1522821510} + - {fileID: 264878278} + - {fileID: 1794954420} + - {fileID: 136043331} + - {fileID: 412498934} + - {fileID: 1476740197} + - {fileID: 344721546} + m_Father: {fileID: 642070750} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 870, y: -2} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1033589356 GameObject: m_ObjectHideFlags: 0 @@ -759693,6 +991893,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: pie-ring @@ -759726,6 +991932,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -759764,6 +991971,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -759991,6 +992199,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -760184,6 +992393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -760203,6 +992415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -760253,6 +992468,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -760272,6 +992490,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -760361,6 +992582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -760380,6 +992604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -760431,6 +992658,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -760450,6 +992680,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -760528,6 +992761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -760547,6 +992783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -760598,6 +992837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -760617,6 +992859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -760695,6 +992940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -760714,6 +992962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -760765,6 +993016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -760784,6 +993038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -760881,6 +993138,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -761074,6 +993332,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -761093,6 +993354,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -761143,6 +993407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -761162,6 +993429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -761251,6 +993521,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -761270,6 +993543,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -761321,6 +993597,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -761340,6 +993619,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -761418,6 +993700,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -761437,6 +993722,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -761488,6 +993776,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -761507,6 +993798,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -761585,6 +993879,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -761604,6 +993901,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -761655,6 +993955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -761674,6 +993977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -761922,6 +994228,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: liquid-gauge @@ -761955,6 +994267,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -761993,6 +994306,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -762236,6 +994550,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -762429,6 +994744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -762448,6 +994766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -762498,6 +994819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -762517,6 +994841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -762606,6 +994933,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -762625,6 +994955,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -762676,6 +995009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -762695,6 +995031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -762792,6 +995131,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: -125 m_EndAngle: 125 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -762988,6 +995328,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -763007,6 +995350,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -763057,6 +995403,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -763076,6 +995425,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -763165,6 +995517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -763184,6 +995539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -763235,6 +995593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -763254,6 +995615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -766864,6 +999228,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1064504265 GameObject: m_ObjectHideFlags: 0 @@ -768113,6 +1000490,1971 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1070827314} m_CullTransparentMesh: 0 +--- !u!1 &1070880688 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1070880691} + - component: {fileID: 1070880690} + - component: {fileID: 1070880689} + m_Layer: 0 + m_Name: CandlestickChart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1070880689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1070880688} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7b64f0bb738cc4acfa72fff2c30212b4, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_MultiComponentMode: 0 + m_DebugMode: 0 + m_EnableTextMeshPro: 0 + m_Background: + m_Show: 0 + m_Image: {fileID: 0} + m_ImageType: 1 + m_ImageColor: {r: 1, g: 1, b: 1, a: 1} + m_HideThemeBackgroundColor: 1 + m_ChartName: + m_Theme: {fileID: 575266801} + m_Settings: + m_MaxPainter: 10 + m_LineSmoothStyle: 3 + m_LineSmoothness: 2 + m_LineSegmentDistance: 3 + m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 + m_Titles: + - m_Show: 1 + m_Text: Base Candlestick + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 1 + m_SubText: + m_SubTextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 1 + m_ItemGap: 0 + m_Location: + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 5 + m_Bottom: 0 + m_Legends: + - m_Show: 0 + m_IconType: 0 + m_SelectedMode: 0 + m_Orient: 0 + m_Location: + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 35 + m_Bottom: 0 + m_ItemWidth: 25 + m_ItemHeight: 12 + m_ItemGap: 10 + m_ItemAutoColor: 1 + m_Formatter: + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 2, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_Data: [] + m_Icons: [] + m_Tooltips: + - m_Show: 1 + m_Type: 3 + m_Formatter: + m_ItemFormatter: + m_TitleFormatter: + m_FixedWidth: 0 + m_FixedHeight: 0 + m_MinWidth: 0 + m_MinHeight: 0 + m_NumericFormatter: + m_PaddingLeftRight: 5 + m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 + m_IgnoreDataDefaultContent: '-' + m_AlwayShow: 0 + m_Offset: {x: 18, y: -25} + m_BackgroundImage: {fileID: 0} + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Grids: + - m_Show: 1 + m_Left: 50 + m_Right: 30 + m_Top: 50 + m_Bottom: 30 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_XAxes: + - m_Show: 1 + m_Type: 1 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 2 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: + - 2020-10-24 + - 2020-10-25 + - 2020-10-26 + - 2020-10-27 + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 0 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + - m_Show: 0 + m_Type: 1 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 3 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 0 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + m_YAxes: + - m_Show: 1 + m_Type: 0 + m_MinMaxType: 2 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 0 + m_Offset: 0 + m_Min: 0 + m_Max: 50 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + - m_Show: 0 + m_Type: 0 + m_MinMaxType: 0 + m_GridIndex: 0 + m_PolarIndex: 0 + m_Position: 1 + m_Offset: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_OnZero: 1 + m_ShowArrow: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_AxisName: + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_AxisLabel: + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Margin: 8 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: ... + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 5 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_Interval: 0 + m_SplitArea: + m_Show: 0 + m_Color: [] + m_DataZooms: + - m_Enable: 0 + m_FilterMode: 3 + m_XAxisIndexs: 00000000 + m_YAxisIndexs: + m_SupportInside: 1 + m_SupportSlider: 1 + m_SupportSelect: 0 + m_ShowDataShadow: 1 + m_ShowDetail: 0 + m_ZoomLock: 0 + m_Realtime: 0 + m_FillerColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderWidth: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_Left: 10 + m_Right: 10 + m_Top: 0.9 + m_Bottom: 10 + m_RangeMode: 0 + m_Start: 30 + m_End: 70 + m_StartValue: 0 + m_EndValue: 0 + m_MinShowNum: 1 + m_ScrollSensitivity: 10 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 0.3 + m_AreaStyle: + m_Show: 1 + m_Origin: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_Opacity: 0.3 + m_TooltipHighlight: 0 + m_HighlightColor: + serializedVersion: 2 + rgba: 0 + m_HighlightToColor: + serializedVersion: 2 + rgba: 0 + m_VisualMaps: + - m_Enable: 0 + m_Show: 1 + m_Type: 0 + m_Direction: 0 + m_SelectedMode: 0 + m_Min: 0 + m_Max: 100 + m_Range: + - 0 + - 100 + m_Text: + - + - + m_TextGap: + - 10 + - 10 + m_SplitNumber: 5 + m_Calculable: 0 + m_Realtime: 1 + m_ItemWidth: 20 + m_ItemHeight: 140 + m_BorderWidth: 0 + m_Dimension: -1 + m_HoverLink: 1 + m_AutoMinMax: 1 + m_Orient: 0 + m_Location: + m_Align: 7 + m_Left: 5 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_InRange: [] + m_OutOfRange: [] + m_Vessels: [] + m_Polars: [] + m_RadiusAxes: [] + m_AngleAxes: [] + m_Radars: [] + m_Series: + m_Series: + - m_Show: 1 + m_Type: 10 + m_Name: serie1 + m_Stack: + m_XAxisIndex: 0 + m_YAxisIndex: 0 + m_RadarIndex: 0 + m_VesselIndex: 0 + m_PolarIndex: 0 + m_MinShow: 0 + m_MaxShow: 0 + m_MaxCache: 0 + m_AreaStyle: + m_Show: 0 + m_Origin: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_Opacity: 0.6 + m_TooltipHighlight: 0 + m_HighlightColor: + serializedVersion: 2 + rgba: 0 + m_HighlightToColor: + serializedVersion: 2 + rgba: 0 + m_Symbol: + m_Show: 0 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 0 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_BarType: 0 + m_BarPercentStack: 0 + m_BarWidth: 0.6 + m_BarGap: 0.3 + m_BarCategoryGap: 0.2 + m_BarZebraWidth: 4 + m_BarZebraGap: 2 + m_Min: 0 + m_Max: 0 + m_StartAngle: 0 + m_EndAngle: 0 + m_MinAngle: 0 + m_Clockwise: 1 + m_RoundCap: 0 + m_RingGap: 10 + m_SplitNumber: 0 + m_GaugeType: 0 + m_GaugeAxis: + m_Show: 1 + m_AxisLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_BarColor: + serializedVersion: 2 + rgba: 0 + m_BarBackgroundColor: + serializedVersion: 2 + rgba: 4291348680 + m_StageColor: + - m_Percent: 0.2 + m_Color: + serializedVersion: 2 + rgba: 4289644433 + - m_Percent: 0.8 + m_Color: + serializedVersion: 2 + rgba: 4288579171 + - m_Percent: 1 + m_Color: + serializedVersion: 2 + rgba: 4281415106 + m_SplitLine: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_AxisTick: + m_Show: 1 + m_LineStyle: + m_Show: 1 + m_Type: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_Width: 0 + m_Length: 0 + m_Opacity: 1 + m_SplitNumber: 5 + m_AxisLabel: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_AxisLabelText: [] + runtimeStageAngle: [] + runtimeLabelPosition: [] + m_GaugePointer: + m_Show: 1 + m_Length: 0.8 + m_Width: 15 + m_ClickOffset: 1 + m_RoseType: 0 + m_Space: 0 + m_Center: + - 0.5 + - 0.45 + m_Radius: + - 0 + - 80 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_Animation: + m_Enable: 1 + m_Easting: 0 + m_Threshold: 2000 + m_FadeInDuration: 1000 + m_FadeInDelay: 0 + m_FadeOutDuration: 1000 + m_FadeOutDelay: 0 + m_DataChangeEnable: 1 + m_DataChangeDuration: 500 + m_ActualDuration: 0 + m_CurrDetailProgress: 0 + m_DestDetailProgress: 1 + m_LineArrow: + m_Show: 0 + m_Position: 0 + m_Arrow: + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_Color: + serializedVersion: 2 + rgba: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_TitleStyle: + m_Show: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ShowDataDimension: 4 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Clip: 0 + m_Ignore: 0 + m_IgnoreValue: 0 + m_ShowAsPositiveNumber: 0 + m_Large: 1 + m_LargeThreshold: 200 + m_AvoidLabelOverlap: 0 + m_WaveHeight: 10 + m_WaveLength: 20 + m_WaveSpeed: 5 + m_WaveOffset: 0 + m_RadarType: 0 + m_Data: + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 20 + - 34 + - 10 + - 38 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 40 + - 35 + - 30 + - 50 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 31 + - 38 + - 33 + - 44 + - m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_EnableItemStyle: 0 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_Show: 0 + m_Label: + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: + serializedVersion: 2 + rgba: 0 + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: + serializedVersion: 2 + rgba: 4286611584 + m_NumericFormatter: + m_AutoOffset: 0 + m_TextStyle: + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 0 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Alignment: 4 + m_ItemStyle: + m_Show: 0 + m_Color: + serializedVersion: 2 + rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 + m_ToColor: + serializedVersion: 2 + rgba: 0 + m_ToColor2: + serializedVersion: 2 + rgba: 0 + m_BackgroundColor: + serializedVersion: 2 + rgba: 0 + m_BackgroundWidth: 0 + m_CenterColor: + serializedVersion: 2 + rgba: 0 + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: + serializedVersion: 2 + rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 0 + m_SelectedSize: 0 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 42 + - 15 + - 5 + - 45 +--- !u!222 &1070880690 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1070880688} + m_CullTransparentMesh: 0 +--- !u!224 &1070880691 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1070880688} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 867979966} + - {fileID: 1173021074} + - {fileID: 1775222154} + - {fileID: 751997008} + - {fileID: 2044627341} + - {fileID: 637677787} + - {fileID: 1776860978} + - {fileID: 1422895925} + - {fileID: 1031766949} + - {fileID: 1757801071} + - {fileID: 477240597} + - {fileID: 401825896} + - {fileID: 968695194} + - {fileID: 178696222} + - {fileID: 206243967} + - {fileID: 430287941} + - {fileID: 1336991963} + - {fileID: 406619059} + - {fileID: 1813797943} + - {fileID: 801904826} + - {fileID: 2053519850} + - {fileID: 83293755} + - {fileID: 889095324} + - {fileID: 989549433} + m_Father: {fileID: 642070750} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 2, y: -2} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1070991846 GameObject: m_ObjectHideFlags: 1 @@ -769946,6 +1004288,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -769979,6 +1004327,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 1 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 1 m_Location: @@ -770017,6 +1004366,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -770374,6 +1004724,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -770567,6 +1004918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -770586,6 +1004940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -770636,6 +1004993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -770655,6 +1005015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -770744,6 +1005107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -770763,6 +1005129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -770814,6 +1005183,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -770833,6 +1005205,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -770915,6 +1005290,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -770934,6 +1005312,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -770985,6 +1005366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -771004,6 +1005388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -771086,6 +1005473,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -771105,6 +1005495,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -771156,6 +1005549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -771175,6 +1005571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -771257,6 +1005656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -771276,6 +1005678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -771327,6 +1005732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -771346,6 +1005754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -771428,6 +1005839,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -771447,6 +1005861,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -771498,6 +1005915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -771517,6 +1005937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -771706,6 +1006129,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1079564397} m_CullTransparentMesh: 0 +--- !u!1 &1079852621 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1079852622} + - component: {fileID: 1079852624} + - component: {fileID: 1079852623} + m_Layer: 0 + m_Name: axis_x5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1079852622 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1079852621} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 406619059} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 990.8, y: -419} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1079852623 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1079852621} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1079852624 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1079852621} + m_CullTransparentMesh: 0 --- !u!1 &1079929076 GameObject: m_ObjectHideFlags: 0 @@ -771784,6 +1006285,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1079929076} m_CullTransparentMesh: 0 +--- !u!1 &1080384919 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1080384920} + - component: {fileID: 1080384922} + - component: {fileID: 1080384921} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1080384920 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1080384919} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 889095324} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1080384921 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1080384919} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1080384922 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1080384919} + m_CullTransparentMesh: 0 --- !u!1 &1081379391 GameObject: m_ObjectHideFlags: 0 @@ -772978,6 +1007557,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1087058923 GameObject: m_ObjectHideFlags: 0 @@ -774180,6 +1008772,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1096074497} m_CullTransparentMesh: 0 +--- !u!1 &1096281561 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1096281562} + - component: {fileID: 1096281564} + - component: {fileID: 1096281563} + m_Layer: 0 + m_Name: background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1096281562 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1096281561} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1096281563 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1096281561} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1096281564 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1096281561} + m_CullTransparentMesh: 0 --- !u!1 &1096953400 GameObject: m_ObjectHideFlags: 0 @@ -776137,6 +1010803,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -776170,6 +1010842,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -776208,6 +1010881,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -776714,6 +1011388,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -776907,6 +1011582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -776926,6 +1011604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -776976,6 +1011657,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -776995,6 +1011679,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777084,6 +1011771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -777103,6 +1011793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777154,6 +1011847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -777173,6 +1011869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777255,6 +1011954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -777274,6 +1011976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777325,6 +1012030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -777344,6 +1012052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777445,6 +1012156,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -777638,6 +1012350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -777657,6 +1012372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777707,6 +1012425,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -777726,6 +1012447,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777815,6 +1012539,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -777834,6 +1012561,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777885,6 +1012615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -777904,6 +1012637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -777987,6 +1012723,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -778006,6 +1012745,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -778057,6 +1012799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -778076,6 +1012821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -779286,6 +1014034,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1112259899 GameObject: m_ObjectHideFlags: 1 @@ -779984,6 +1014745,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &1117086762 MonoBehaviour: m_ObjectHideFlags: 0 @@ -781366,6 +1016239,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1124140265 GameObject: m_ObjectHideFlags: 1 @@ -781813,6 +1016699,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1125523701 GameObject: m_ObjectHideFlags: 0 @@ -782278,6 +1017177,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Zebra @@ -782311,6 +1017216,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -782349,6 +1017255,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -783082,6 +1017989,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -783275,6 +1018183,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783294,6 +1018205,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -783344,6 +1018258,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783363,6 +1018280,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -783452,6 +1018372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783471,6 +1018394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -783522,6 +1018448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783541,6 +1018470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -783619,6 +1018551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783638,6 +1018573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -783689,6 +1018627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783708,6 +1018649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -783786,6 +1018730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783805,6 +1018752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -783856,6 +1018806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783875,6 +1018828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -783953,6 +1018909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -783972,6 +1018931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -784023,6 +1018985,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -784042,6 +1019007,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -784120,6 +1019088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -784139,6 +1019110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -784190,6 +1019164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -784209,6 +1019186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -786723,6 +1021703,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1137941062} m_CullTransparentMesh: 0 +--- !u!1 &1137991602 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1137991603} + - component: {fileID: 1137991605} + - component: {fileID: 1137991604} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1137991603 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137991602} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1510606401} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1137991604 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137991602} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1137991605 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1137991602} + m_CullTransparentMesh: 0 --- !u!1 &1138313788 GameObject: m_ObjectHideFlags: 0 @@ -788685,6 +1023743,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1144540469 GameObject: m_ObjectHideFlags: 0 @@ -789401,6 +1024472,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1148720754} m_CullTransparentMesh: 0 +--- !u!1 &1149057100 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1149057101} + - component: {fileID: 1149057103} + - component: {fileID: 1149057102} + m_Layer: 0 + m_Name: axis_y_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1149057101 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1149057100} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 698019810} + m_Father: {fileID: 989549433} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1149057102 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1149057100} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1149057103 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1149057100} + m_CullTransparentMesh: 0 --- !u!1 &1150011277 GameObject: m_ObjectHideFlags: 0 @@ -789512,6 +1024658,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: LineChart @@ -789545,6 +1024697,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -789583,6 +1024736,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -790326,6 +1025480,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -790519,6 +1025674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -790538,6 +1025696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -790588,6 +1025749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -790607,6 +1025771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -790696,6 +1025863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -790715,6 +1025885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -790766,6 +1025939,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -790785,6 +1025961,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -790863,6 +1026042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -790882,6 +1026064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -790933,6 +1026118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -790952,6 +1026140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791030,6 +1026221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791049,6 +1026243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791100,6 +1026297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791119,6 +1026319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791197,6 +1026400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791216,6 +1026422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791267,6 +1026476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791286,6 +1026498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791364,6 +1026579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791383,6 +1026601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791434,6 +1026655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791453,6 +1026677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791531,6 +1026758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791550,6 +1026780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791601,6 +1026834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791620,6 +1026856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791698,6 +1026937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791717,6 +1026959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791768,6 +1027013,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791787,6 +1027035,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791865,6 +1027116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791884,6 +1027138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -791935,6 +1027192,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -791954,6 +1027214,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792032,6 +1027295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792051,6 +1027317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792102,6 +1027371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792121,6 +1027393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792199,6 +1027474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792218,6 +1027496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792269,6 +1027550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792288,6 +1027572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792366,6 +1027653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792385,6 +1027675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792436,6 +1027729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792455,6 +1027751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792533,6 +1027832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792552,6 +1027854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792603,6 +1027908,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792622,6 +1027930,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792700,6 +1028011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792719,6 +1028033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792770,6 +1028087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792789,6 +1028109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792867,6 +1028190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792886,6 +1028212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -792937,6 +1028266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -792956,6 +1028288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -793034,6 +1028369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -793053,6 +1028391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -793104,6 +1028445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -793123,6 +1028467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -793201,6 +1028548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -793220,6 +1028570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -793271,6 +1028624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -793290,6 +1028646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -793706,6 +1029065,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1150917830 GameObject: m_ObjectHideFlags: 0 @@ -794004,6 +1029376,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1151657060} m_CullTransparentMesh: 0 +--- !u!1 &1151755839 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1151755840} + - component: {fileID: 1151755842} + - component: {fileID: 1151755841} + m_Layer: 0 + m_Name: painter_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1151755840 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1151755839} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1151755841 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1151755839} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1151755842 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1151755839} + m_CullTransparentMesh: 0 --- !u!1 &1152074255 GameObject: m_ObjectHideFlags: 1 @@ -794514,6 +1029950,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1154003753} m_CullTransparentMesh: 0 +--- !u!1 &1154967752 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1154967753} + - component: {fileID: 1154967755} + - component: {fileID: 1154967754} + m_Layer: 0 + m_Name: axis_x15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1154967753 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1154967752} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 264878278} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 990.8, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1154967754 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1154967752} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1154967755 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1154967752} + m_CullTransparentMesh: 0 --- !u!1 &1155161489 GameObject: m_ObjectHideFlags: 1 @@ -795530,6 +1031044,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1158438517} m_CullTransparentMesh: 0 +--- !u!1 &1158804605 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1158804606} + - component: {fileID: 1158804608} + - component: {fileID: 1158804607} + m_Layer: 0 + m_Name: axis_y13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1158804606 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1158804605} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2053519850} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 241.20001} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1158804607 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1158804605} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1158804608 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1158804605} + m_CullTransparentMesh: 0 --- !u!1 &1159200894 GameObject: m_ObjectHideFlags: 0 @@ -795946,6 +1031538,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1159898556 GameObject: m_ObjectHideFlags: 0 @@ -796117,6 +1031722,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Percent & Stack @@ -796150,6 +1031761,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -796188,6 +1031800,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -796921,6 +1032534,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -797114,6 +1032728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797133,6 +1032750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797183,6 +1032803,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797202,6 +1032825,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797291,6 +1032917,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797310,6 +1032939,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797361,6 +1032993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797380,6 +1033015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797458,6 +1033096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797477,6 +1033118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797528,6 +1033172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797547,6 +1033194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797625,6 +1033275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797644,6 +1033297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797695,6 +1033351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797714,6 +1033373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797792,6 +1033454,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797811,6 +1033476,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797862,6 +1033530,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797881,6 +1033552,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -797959,6 +1033633,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -797978,6 +1033655,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798029,6 +1033709,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798048,6 +1033731,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798145,6 +1033831,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -798338,6 +1034025,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798357,6 +1034047,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798407,6 +1034100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798426,6 +1034122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798515,6 +1034214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798534,6 +1034236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798585,6 +1034290,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798604,6 +1034312,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798682,6 +1034393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798701,6 +1034415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798752,6 +1034469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798771,6 +1034491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798849,6 +1034572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798868,6 +1034594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -798919,6 +1034648,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -798938,6 +1034670,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799016,6 +1034751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799035,6 +1034773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799086,6 +1034827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799105,6 +1034849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799183,6 +1034930,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799202,6 +1034952,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799253,6 +1035006,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799272,6 +1035028,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799369,6 +1035128,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -799562,6 +1035322,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799581,6 +1035344,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799631,6 +1035397,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799650,6 +1035419,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799739,6 +1035511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799758,6 +1035533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799809,6 +1035587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799828,6 +1035609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799906,6 +1035690,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799925,6 +1035712,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -799976,6 +1035766,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -799995,6 +1035788,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -800073,6 +1035869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -800092,6 +1035891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -800143,6 +1035945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -800162,6 +1035967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -800240,6 +1036048,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -800259,6 +1036070,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -800310,6 +1036124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -800329,6 +1036146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -800407,6 +1036227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -800426,6 +1036249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -800477,6 +1036303,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -800496,6 +1036325,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -800681,6 +1036513,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1161950973} m_CullTransparentMesh: 0 +--- !u!1 &1162038945 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1162038946} + - component: {fileID: 1162038948} + - component: {fileID: 1162038947} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1162038946 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1162038945} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 607091243} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 2, y: 10} + m_SizeDelta: {x: -4, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1162038947 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1162038945} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 24 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: CandlestickChart +--- !u!222 &1162038948 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1162038945} + m_CullTransparentMesh: 0 --- !u!1 &1162107897 GameObject: m_ObjectHideFlags: 0 @@ -801633,6 +1037543,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1165248526 GameObject: m_ObjectHideFlags: 0 @@ -803341,6 +1039264,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1170583283} m_CullTransparentMesh: 0 +--- !u!1 &1171005470 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1171005471} + - component: {fileID: 1171005473} + - component: {fileID: 1171005472} + m_Layer: 0 + m_Name: background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1171005471 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1171005470} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1171005472 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1171005470} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1171005473 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1171005470} + m_CullTransparentMesh: 0 --- !u!1 &1171307646 GameObject: m_ObjectHideFlags: 1 @@ -804002,6 +1039999,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1172437959 GameObject: m_ObjectHideFlags: 0 @@ -804443,6 +1040453,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -804476,6 +1040492,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -804514,6 +1040531,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -804757,6 +1040775,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -804950,6 +1040969,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -804969,6 +1040991,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -805019,6 +1041044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -805038,6 +1041066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -805127,6 +1041158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -805146,6 +1041180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -805197,6 +1041234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -805216,6 +1041256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -805313,6 +1041356,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -805506,6 +1041550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -805525,6 +1041572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -805575,6 +1041625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -805594,6 +1041647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -805683,6 +1041739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -805702,6 +1041761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -805753,6 +1041815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -805772,6 +1041837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -805842,6 +1041910,70 @@ RectTransform: m_AnchoredPosition: {x: 580.6667, y: -293.33334} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1173021073 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1173021074} + - component: {fileID: 1173021076} + - component: {fileID: 1173021075} + m_Layer: 0 + m_Name: painter_b + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1173021074 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1173021073} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1173021075 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1173021073} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1173021076 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1173021073} + m_CullTransparentMesh: 0 --- !u!1 &1173666641 GameObject: m_ObjectHideFlags: 0 @@ -806483,6 +1042615,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1176672023} m_CullTransparentMesh: 0 +--- !u!1 &1176866992 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1176866993} + - component: {fileID: 1176866995} + - component: {fileID: 1176866994} + m_Layer: 0 + m_Name: painter_8 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1176866993 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176866992} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1176866994 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176866992} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1176866995 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1176866992} + m_CullTransparentMesh: 0 --- !u!1 &1177162713 GameObject: m_ObjectHideFlags: 0 @@ -806858,6 +1043054,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -806891,6 +1043093,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -806929,6 +1043132,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -807156,6 +1043360,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 30 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 15 @@ -807349,6 +1043554,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -807368,6 +1043576,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -807418,6 +1043629,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -807437,6 +1043651,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -807526,6 +1043743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -807545,6 +1043765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -807596,6 +1043819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -807615,6 +1043841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -807694,6 +1043923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -807713,6 +1043945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -807764,6 +1043999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -807783,6 +1044021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -807881,6 +1044122,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 1 m_RingGap: 10 @@ -808074,6 +1044316,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -808093,6 +1044338,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -808143,6 +1044391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -808162,6 +1044413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -808251,6 +1044505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -808270,6 +1044527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -808321,6 +1044581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -808340,6 +1044603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -810534,6 +1046800,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1192599778} m_CullTransparentMesh: 0 +--- !u!1 &1192662624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1192662625} + - component: {fileID: 1192662627} + - component: {fileID: 1192662626} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1192662625 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1192662624} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1889278936} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1192662626 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1192662624} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1192662627 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1192662624} + m_CullTransparentMesh: 0 --- !u!1 &1192715175 GameObject: m_ObjectHideFlags: 1 @@ -810676,6 +1047020,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1193131597} m_CullTransparentMesh: 0 +--- !u!1 &1193932331 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1193932332} + - component: {fileID: 1193932334} + - component: {fileID: 1193932333} + m_Layer: 0 + m_Name: painter_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1193932332 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1193932331} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1193932333 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1193932331} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1193932334 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1193932331} + m_CullTransparentMesh: 0 --- !u!1 &1194655379 GameObject: m_ObjectHideFlags: 0 @@ -810818,6 +1047226,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1195653403} m_CullTransparentMesh: 0 +--- !u!1 &1195812871 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1195812872} + - component: {fileID: 1195812874} + - component: {fileID: 1195812873} + m_Layer: 0 + m_Name: axis_x0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1195812872 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1195812871} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 406619059} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 246, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1195812873 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1195812871} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 2020-10-24 +--- !u!222 &1195812874 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1195812871} + m_CullTransparentMesh: 0 --- !u!1 &1196280389 GameObject: m_ObjectHideFlags: 1 @@ -812976,6 +1049462,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1207234033} m_CullTransparentMesh: 0 +--- !u!1 &1208139312 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1208139313} + - component: {fileID: 1208139315} + - component: {fileID: 1208139314} + m_Layer: 0 + m_Name: axis_y15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1208139313 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1208139312} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 136043331} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 382} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1208139314 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1208139312} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1208139315 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1208139312} + m_CullTransparentMesh: 0 --- !u!1 &1208379749 GameObject: m_ObjectHideFlags: 0 @@ -814177,6 +1050741,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1214602852} m_CullTransparentMesh: 0 +--- !u!1 &1215571449 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1215571450} + - component: {fileID: 1215571452} + - component: {fileID: 1215571451} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1215571450 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215571449} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 412498934} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1215571451 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215571449} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1215571452 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215571449} + m_CullTransparentMesh: 0 --- !u!1 &1216183653 GameObject: m_ObjectHideFlags: 1 @@ -814886,6 +1051528,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1217600080 GameObject: m_ObjectHideFlags: 0 @@ -815703,6 +1052358,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1219347794 GameObject: m_ObjectHideFlags: 0 @@ -815859,6 +1052527,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1220532082} m_CullTransparentMesh: 0 +--- !u!1 &1220567494 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1220567495} + - component: {fileID: 1220567497} + - component: {fileID: 1220567496} + m_Layer: 0 + m_Name: axis_x4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1220567495 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220567494} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1522821510} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 1030, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1220567496 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220567494} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1220567497 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220567494} + m_CullTransparentMesh: 0 --- !u!1 &1220714865 GameObject: m_ObjectHideFlags: 1 @@ -818786,6 +1055532,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1235005289 GameObject: m_ObjectHideFlags: 0 @@ -821639,6 +1058398,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1248011418} m_CullTransparentMesh: 0 +--- !u!1 &1248113495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1248113496} + - component: {fileID: 1248113498} + - component: {fileID: 1248113497} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1248113496 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248113495} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 878109528} + m_Father: {fileID: 989549433} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1248113497 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248113495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1248113498 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1248113495} + m_CullTransparentMesh: 0 --- !u!1 &1248189617 GameObject: m_ObjectHideFlags: 1 @@ -822377,6 +1059211,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1250960063 GameObject: m_ObjectHideFlags: 0 @@ -822871,6 +1059718,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1252516692 GameObject: m_ObjectHideFlags: 0 @@ -823288,6 +1060148,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1253825927 GameObject: m_ObjectHideFlags: 0 @@ -824033,6 +1060906,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1255449651 GameObject: m_ObjectHideFlags: 0 @@ -824257,6 +1061143,162 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1255594972} m_CullTransparentMesh: 0 +--- !u!1 &1256757275 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1256757276} + - component: {fileID: 1256757278} + - component: {fileID: 1256757277} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1256757276 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1256757275} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 301088169} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1256757277 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1256757275} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1256757278 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1256757275} + m_CullTransparentMesh: 0 +--- !u!1 &1257441140 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1257441141} + - component: {fileID: 1257441143} + - component: {fileID: 1257441142} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1257441141 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1257441140} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 801904826} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 170.79999} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1257441142 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1257441140} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 20 +--- !u!222 &1257441143 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1257441140} + m_CullTransparentMesh: 0 --- !u!1 &1257964019 GameObject: m_ObjectHideFlags: 0 @@ -826159,6 +1063201,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1265911443 GameObject: m_ObjectHideFlags: 1 @@ -827822,6 +1064877,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1277209801} m_CullTransparentMesh: 0 +--- !u!1 &1277387632 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1277387633} + - component: {fileID: 1277387635} + - component: {fileID: 1277387634} + m_Layer: 0 + m_Name: painter_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1277387633 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1277387632} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1277387634 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1277387632} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1277387635 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1277387632} + m_CullTransparentMesh: 0 --- !u!1 &1277537961 GameObject: m_ObjectHideFlags: 0 @@ -828782,6 +1065901,70 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1282012212 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1282012213} + - component: {fileID: 1282012215} + - component: {fileID: 1282012214} + m_Layer: 0 + m_Name: painter_b + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1282012213 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282012212} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1282012214 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282012212} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1282012215 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1282012212} + m_CullTransparentMesh: 0 --- !u!1 &1282839633 GameObject: m_ObjectHideFlags: 0 @@ -830103,6 +1067286,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1291057284} m_CullTransparentMesh: 0 +--- !u!1 &1291069014 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1291069015} + - component: {fileID: 1291069017} + - component: {fileID: 1291069016} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1291069015 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291069014} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 653018502} + m_Father: {fileID: 344721546} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1291069016 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291069014} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1291069017 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291069014} + m_CullTransparentMesh: 0 --- !u!1 &1291833591 GameObject: m_ObjectHideFlags: 0 @@ -830617,6 +1067875,42 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1293068482} m_CullTransparentMesh: 0 +--- !u!1 &1293982804 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1293982805} + m_Layer: 0 + m_Name: serie + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1293982805 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293982804} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 826122620} + m_Father: {fileID: 1033575168} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1294077121 GameObject: m_ObjectHideFlags: 1 @@ -831299,6 +1068593,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: PieChart @@ -831332,6 +1068632,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -831370,6 +1068671,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -831597,6 +1068899,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -831790,6 +1069093,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -831809,6 +1069115,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -831859,6 +1069168,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -831878,6 +1069190,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -831967,6 +1069282,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -831986,6 +1069304,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832037,6 +1069358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832056,6 +1069380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832134,6 +1069461,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832153,6 +1069483,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832204,6 +1069537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832223,6 +1069559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832301,6 +1069640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832320,6 +1069662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832371,6 +1069716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832390,6 +1069738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832468,6 +1069819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832487,6 +1069841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832538,6 +1069895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832557,6 +1069917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832635,6 +1069998,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832654,6 +1070020,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832705,6 +1070074,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -832724,6 +1070096,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -832973,6 +1070348,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1298014546} m_CullTransparentMesh: 0 +--- !u!1 &1298640644 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1298640645} + - component: {fileID: 1298640647} + - component: {fileID: 1298640646} + m_Layer: 0 + m_Name: axis_y5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1298640645 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1298640644} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1794954420} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 382} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1298640646 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1298640644} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 50 +--- !u!222 &1298640647 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1298640644} + m_CullTransparentMesh: 0 --- !u!1 &1299069325 GameObject: m_ObjectHideFlags: 0 @@ -833573,6 +1071026,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1299906534 GameObject: m_ObjectHideFlags: 1 @@ -834084,6 +1071550,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1304314262} m_CullTransparentMesh: 0 +--- !u!1 &1304829138 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1304829139} + - component: {fileID: 1304829141} + - component: {fileID: 1304829140} + m_Layer: 0 + m_Name: axis_x_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1304829139 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1304829138} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1457983127} + m_Father: {fileID: 253333212} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1304829140 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1304829138} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1304829141 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1304829138} + m_CullTransparentMesh: 0 --- !u!1 &1304904921 GameObject: m_ObjectHideFlags: 0 @@ -834175,6 +1071716,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -834208,6 +1071755,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 1 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 1 m_Location: @@ -834246,6 +1071794,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -834473,6 +1072022,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -834666,6 +1072216,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -834685,6 +1072238,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -834735,6 +1072291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -834754,6 +1072313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -834843,6 +1072405,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -834862,6 +1072427,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -834913,6 +1072481,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -834932,6 +1072503,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -835011,6 +1072585,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -835030,6 +1072607,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -835081,6 +1072661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -835100,6 +1072683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -835179,6 +1072765,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -835198,6 +1072787,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -835249,6 +1072841,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -835268,6 +1072863,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -837696,6 +1075294,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1320333947} m_CullTransparentMesh: 0 +--- !u!1 &1321135644 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1321135645} + m_Layer: 0 + m_Name: axis_x + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1321135645 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1321135644} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1329097695} + - {fileID: 1347930625} + - {fileID: 2146839787} + - {fileID: 676046854} + - {fileID: 1028201019} + - {fileID: 710953747} + m_Father: {fileID: 651764999} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1322457005 GameObject: m_ObjectHideFlags: 0 @@ -837930,6 +1075569,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1322659196} m_CullTransparentMesh: 0 +--- !u!1 &1322905224 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1322905225} + - component: {fileID: 1322905227} + - component: {fileID: 1322905226} + m_Layer: 0 + m_Name: painter_t + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1322905225 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1322905224} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1322905226 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1322905224} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1322905227 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1322905224} + m_CullTransparentMesh: 0 --- !u!1 &1323143168 GameObject: m_ObjectHideFlags: 0 @@ -838008,6 +1075711,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1323143168} m_CullTransparentMesh: 0 +--- !u!1 &1323857804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1323857805} + - component: {fileID: 1323857807} + - component: {fileID: 1323857806} + m_Layer: 0 + m_Name: axis_x0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1323857805 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1323857804} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1522821510} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 246, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1323857806 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1323857804} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 2020-10-24 +--- !u!222 &1323857807 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1323857804} + m_CullTransparentMesh: 0 --- !u!1 &1324054265 GameObject: m_ObjectHideFlags: 0 @@ -838658,6 +1076439,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1329028939} m_CullTransparentMesh: 0 +--- !u!1 &1329097694 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1329097695} + - component: {fileID: 1329097697} + - component: {fileID: 1329097696} + m_Layer: 0 + m_Name: axis_x0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1329097695 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1329097694} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1321135645} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 137.787, y: -379} + m_SizeDelta: {x: 154.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1329097696 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1329097694} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 299 +--- !u!222 &1329097697 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1329097694} + m_CullTransparentMesh: 0 --- !u!1 &1329592808 GameObject: m_ObjectHideFlags: 0 @@ -840080,6 +1077939,42 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1336991962 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1336991963} + m_Layer: 0 + m_Name: serie + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1336991963 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1336991962} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1910345790} + m_Father: {fileID: 1070880691} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1337332764 GameObject: m_ObjectHideFlags: 0 @@ -840433,6 +1078328,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1338859341} m_CullTransparentMesh: 0 +--- !u!1 &1339036303 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1339036304} + - component: {fileID: 1339036306} + - component: {fileID: 1339036305} + m_Layer: 0 + m_Name: axis_y11 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1339036304 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1339036303} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2053519850} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 100.399994} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1339036305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1339036303} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1339036306 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1339036303} + m_CullTransparentMesh: 0 --- !u!1 &1339204572 GameObject: m_ObjectHideFlags: 0 @@ -841051,6 +1079024,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -841084,6 +1079063,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -841122,6 +1079102,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -841381,6 +1079362,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -841574,6 +1079556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -841593,6 +1079578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.8 m_TooltipFormatter: m_NumericFormatter: @@ -841643,6 +1079631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -841662,6 +1079653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -841751,6 +1079745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -841770,6 +1079767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -841821,6 +1079821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -841840,6 +1079843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -841937,6 +1079943,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -842130,6 +1080137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -842149,6 +1080159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.8 m_TooltipFormatter: m_NumericFormatter: @@ -842199,6 +1080212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -842218,6 +1080234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -842307,6 +1080326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -842326,6 +1080348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -842377,6 +1080402,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -842396,6 +1080424,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -843628,6 +1081659,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1347767983} m_CullTransparentMesh: 0 +--- !u!1 &1347930624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1347930625} + - component: {fileID: 1347930627} + - component: {fileID: 1347930626} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1347930625 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347930624} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1321135645} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 292.587, y: -379} + m_SizeDelta: {x: 154.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1347930626 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347930624} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 379 +--- !u!222 &1347930627 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347930624} + m_CullTransparentMesh: 0 --- !u!1 &1348455167 GameObject: m_ObjectHideFlags: 1 @@ -843692,6 +1081801,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1348455167} m_CullTransparentMesh: 0 +--- !u!1 &1348602452 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1348602453} + - component: {fileID: 1348602455} + - component: {fileID: 1348602454} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1348602453 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1348602452} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 635823336} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1348602454 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1348602452} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1348602455 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1348602452} + m_CullTransparentMesh: 0 --- !u!1 &1349011212 GameObject: m_ObjectHideFlags: 0 @@ -845015,6 +1083202,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1354489770} m_CullTransparentMesh: 0 +--- !u!1 &1354818625 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1354818626} + - component: {fileID: 1354818628} + - component: {fileID: 1354818627} + m_Layer: 0 + m_Name: axis_x14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1354818626 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1354818625} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1813797943} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 834, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1354818627 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1354818625} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x5 +--- !u!222 &1354818628 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1354818625} + m_CullTransparentMesh: 0 --- !u!1 &1356002139 GameObject: m_ObjectHideFlags: 1 @@ -845579,6 +1083844,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1358039716} m_CullTransparentMesh: 0 +--- !u!1 &1359351995 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1359351996} + - component: {fileID: 1359351998} + - component: {fileID: 1359351997} + m_Layer: 0 + m_Name: axis_x12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1359351996 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1359351995} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1498267858} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 520.4, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1359351997 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1359351995} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x3 +--- !u!222 &1359351998 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1359351995} + m_CullTransparentMesh: 0 --- !u!1 &1359821255 GameObject: m_ObjectHideFlags: 0 @@ -846615,6 +1084958,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1363182014 GameObject: m_ObjectHideFlags: 0 @@ -847208,6 +1085564,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -847241,6 +1085603,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -847279,6 +1085642,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -847522,6 +1085886,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -847715,6 +1086080,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -847734,6 +1086102,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.5 m_TooltipFormatter: m_NumericFormatter: @@ -847784,6 +1086155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -847803,6 +1086177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -847892,6 +1086269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -847911,6 +1086291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -847962,6 +1086345,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -847981,6 +1086367,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -848078,6 +1086467,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -848271,6 +1086661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -848290,6 +1086683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.5 m_TooltipFormatter: m_NumericFormatter: @@ -848340,6 +1086736,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -848359,6 +1086758,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -848448,6 +1086850,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -848467,6 +1086872,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -848518,6 +1086926,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -848537,6 +1086948,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -849174,6 +1087588,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Sin Curve @@ -849207,6 +1087627,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -849245,6 +1087666,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -849972,6 +1088394,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -850165,6 +1088588,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850184,6 +1088610,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850234,6 +1088663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850253,6 +1088685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850342,6 +1088777,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850361,6 +1088799,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850412,6 +1088853,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850431,6 +1088875,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850509,6 +1088956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850528,6 +1088978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850579,6 +1089032,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850598,6 +1089054,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850676,6 +1089135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850695,6 +1089157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850746,6 +1089211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850765,6 +1089233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850843,6 +1089314,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850862,6 +1089336,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -850913,6 +1089390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -850932,6 +1089412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851010,6 +1089493,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851029,6 +1089515,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851080,6 +1089569,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851099,6 +1089591,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851177,6 +1089672,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851196,6 +1089694,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851247,6 +1089748,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851266,6 +1089770,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851344,6 +1089851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851363,6 +1089873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851414,6 +1089927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851433,6 +1089949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851511,6 +1090030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851530,6 +1090052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851581,6 +1090106,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851600,6 +1090128,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851678,6 +1090209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851697,6 +1090231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851748,6 +1090285,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851767,6 +1090307,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851845,6 +1090388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851864,6 +1090410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -851915,6 +1090464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -851934,6 +1090486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852012,6 +1090567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852031,6 +1090589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852082,6 +1090643,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852101,6 +1090665,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852179,6 +1090746,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852198,6 +1090768,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852249,6 +1090822,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852268,6 +1090844,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852346,6 +1090925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852365,6 +1090947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852416,6 +1091001,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852435,6 +1091023,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852513,6 +1091104,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852532,6 +1091126,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852583,6 +1091180,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852602,6 +1091202,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852680,6 +1091283,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852699,6 +1091305,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852750,6 +1091359,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852769,6 +1091381,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852847,6 +1091462,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852866,6 +1091484,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -852917,6 +1091538,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -852936,6 +1091560,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853014,6 +1091641,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853033,6 +1091663,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853084,6 +1091717,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853103,6 +1091739,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853181,6 +1091820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853200,6 +1091842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853251,6 +1091896,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853270,6 +1091918,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853348,6 +1091999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853367,6 +1092021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853418,6 +1092075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853437,6 +1092097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853515,6 +1092178,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853534,6 +1092200,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853585,6 +1092254,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853604,6 +1092276,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853682,6 +1092357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853701,6 +1092379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853752,6 +1092433,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853771,6 +1092455,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853849,6 +1092536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853868,6 +1092558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -853919,6 +1092612,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -853938,6 +1092634,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854016,6 +1092715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854035,6 +1092737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854086,6 +1092791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854105,6 +1092813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854183,6 +1092894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854202,6 +1092916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854253,6 +1092970,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854272,6 +1092992,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854350,6 +1093073,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854369,6 +1093095,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854420,6 +1093149,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854439,6 +1093171,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854517,6 +1093252,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854536,6 +1093274,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854587,6 +1093328,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854606,6 +1093350,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854684,6 +1093431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854703,6 +1093453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854754,6 +1093507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854773,6 +1093529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854851,6 +1093610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854870,6 +1093632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -854921,6 +1093686,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -854940,6 +1093708,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855018,6 +1093789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855037,6 +1093811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855088,6 +1093865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855107,6 +1093887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855185,6 +1093968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855204,6 +1093990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855255,6 +1094044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855274,6 +1094066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855352,6 +1094147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855371,6 +1094169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855422,6 +1094223,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855441,6 +1094245,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855519,6 +1094326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855538,6 +1094348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855589,6 +1094402,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855608,6 +1094424,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855686,6 +1094505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855705,6 +1094527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855756,6 +1094581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855775,6 +1094603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855853,6 +1094684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855872,6 +1094706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -855923,6 +1094760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -855942,6 +1094782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856020,6 +1094863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856039,6 +1094885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856090,6 +1094939,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856109,6 +1094961,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856187,6 +1095042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856206,6 +1095064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856257,6 +1095118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856276,6 +1095140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856354,6 +1095221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856373,6 +1095243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856424,6 +1095297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856443,6 +1095319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856521,6 +1095400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856540,6 +1095422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856591,6 +1095476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856610,6 +1095498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856688,6 +1095579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856707,6 +1095601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856758,6 +1095655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856777,6 +1095677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856855,6 +1095758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856874,6 +1095780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -856925,6 +1095834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -856944,6 +1095856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857022,6 +1095937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857041,6 +1095959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857092,6 +1096013,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857111,6 +1096035,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857189,6 +1096116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857208,6 +1096138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857259,6 +1096192,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857278,6 +1096214,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857356,6 +1096295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857375,6 +1096317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857426,6 +1096371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857445,6 +1096393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857523,6 +1096474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857542,6 +1096496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857593,6 +1096550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857612,6 +1096572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857690,6 +1096653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857709,6 +1096675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857760,6 +1096729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857779,6 +1096751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857857,6 +1096832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857876,6 +1096854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -857927,6 +1096908,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -857946,6 +1096930,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858024,6 +1097011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858043,6 +1097033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858094,6 +1097087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858113,6 +1097109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858191,6 +1097190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858210,6 +1097212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858261,6 +1097266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858280,6 +1097288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858358,6 +1097369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858377,6 +1097391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858428,6 +1097445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858447,6 +1097467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858525,6 +1097548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858544,6 +1097570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858595,6 +1097624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858614,6 +1097646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858692,6 +1097727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858711,6 +1097749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858762,6 +1097803,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858781,6 +1097825,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858859,6 +1097906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858878,6 +1097928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -858929,6 +1097982,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -858948,6 +1098004,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859026,6 +1098085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859045,6 +1098107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859096,6 +1098161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859115,6 +1098183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859193,6 +1098264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859212,6 +1098286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859263,6 +1098340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859282,6 +1098362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859360,6 +1098443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859379,6 +1098465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859430,6 +1098519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859449,6 +1098541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859527,6 +1098622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859546,6 +1098644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859597,6 +1098698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859616,6 +1098720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859694,6 +1098801,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859713,6 +1098823,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859764,6 +1098877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859783,6 +1098899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859861,6 +1098980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859880,6 +1099002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -859931,6 +1099056,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -859950,6 +1099078,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860028,6 +1099159,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860047,6 +1099181,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860098,6 +1099235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860117,6 +1099257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860195,6 +1099338,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860214,6 +1099360,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860265,6 +1099414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860284,6 +1099436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860362,6 +1099517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860381,6 +1099539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860432,6 +1099593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860451,6 +1099615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860529,6 +1099696,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860548,6 +1099718,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860599,6 +1099772,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860618,6 +1099794,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860696,6 +1099875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860715,6 +1099897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860766,6 +1099951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860785,6 +1099973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860863,6 +1100054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860882,6 +1100076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -860933,6 +1100130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -860952,6 +1100152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861030,6 +1100233,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861049,6 +1100255,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861100,6 +1100309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861119,6 +1100331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861197,6 +1100412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861216,6 +1100434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861267,6 +1100488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861286,6 +1100510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861364,6 +1100591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861383,6 +1100613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861434,6 +1100667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861453,6 +1100689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861531,6 +1100770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861550,6 +1100792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861601,6 +1100846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861620,6 +1100868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861698,6 +1100949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861717,6 +1100971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861768,6 +1101025,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861787,6 +1101047,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861865,6 +1101128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861884,6 +1101150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -861935,6 +1101204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -861954,6 +1101226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862032,6 +1101307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862051,6 +1101329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862102,6 +1101383,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862121,6 +1101405,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862199,6 +1101486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862218,6 +1101508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862269,6 +1101562,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862288,6 +1101584,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862366,6 +1101665,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862385,6 +1101687,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862436,6 +1101741,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862455,6 +1101763,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862533,6 +1101844,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862552,6 +1101866,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862603,6 +1101920,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862622,6 +1101942,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862700,6 +1102023,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862719,6 +1102045,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862770,6 +1102099,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862789,6 +1102121,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862867,6 +1102202,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862886,6 +1102224,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -862937,6 +1102278,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -862956,6 +1102300,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863034,6 +1102381,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863053,6 +1102403,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863104,6 +1102457,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863123,6 +1102479,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863201,6 +1102560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863220,6 +1102582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863271,6 +1102636,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863290,6 +1102658,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863368,6 +1102739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863387,6 +1102761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863438,6 +1102815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863457,6 +1102837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863535,6 +1102918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863554,6 +1102940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863605,6 +1102994,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863624,6 +1103016,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863702,6 +1103097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863721,6 +1103119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863772,6 +1103173,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863791,6 +1103195,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863869,6 +1103276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863888,6 +1103298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -863939,6 +1103352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -863958,6 +1103374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864036,6 +1103455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864055,6 +1103477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864106,6 +1103531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864125,6 +1103553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864203,6 +1103634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864222,6 +1103656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864273,6 +1103710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864292,6 +1103732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864370,6 +1103813,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864389,6 +1103835,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864440,6 +1103889,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864459,6 +1103911,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864537,6 +1103992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864556,6 +1104014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864607,6 +1104068,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864626,6 +1104090,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864704,6 +1104171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864723,6 +1104193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864774,6 +1104247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864793,6 +1104269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864871,6 +1104350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864890,6 +1104372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -864941,6 +1104426,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -864960,6 +1104448,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865038,6 +1104529,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865057,6 +1104551,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865108,6 +1104605,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865127,6 +1104627,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865205,6 +1104708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865224,6 +1104730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865275,6 +1104784,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865294,6 +1104806,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865372,6 +1104887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865391,6 +1104909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865442,6 +1104963,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865461,6 +1104985,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865539,6 +1105066,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865558,6 +1105088,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865609,6 +1105142,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865628,6 +1105164,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865706,6 +1105245,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865725,6 +1105267,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865776,6 +1105321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865795,6 +1105343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865873,6 +1105424,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865892,6 +1105446,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -865943,6 +1105500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -865962,6 +1105522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866040,6 +1105603,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866059,6 +1105625,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866110,6 +1105679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866129,6 +1105701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866207,6 +1105782,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866226,6 +1105804,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866277,6 +1105858,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866296,6 +1105880,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866374,6 +1105961,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866393,6 +1105983,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866444,6 +1106037,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866463,6 +1106059,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866541,6 +1106140,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866560,6 +1106162,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866611,6 +1106216,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866630,6 +1106238,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866708,6 +1106319,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866727,6 +1106341,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866778,6 +1106395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866797,6 +1106417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866875,6 +1106498,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866894,6 +1106520,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -866945,6 +1106574,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -866964,6 +1106596,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867042,6 +1106677,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867061,6 +1106699,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867112,6 +1106753,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867131,6 +1106775,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867209,6 +1106856,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867228,6 +1106878,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867279,6 +1106932,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867298,6 +1106954,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867376,6 +1107035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867395,6 +1107057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867446,6 +1107111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867465,6 +1107133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867543,6 +1107214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867562,6 +1107236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867613,6 +1107290,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867632,6 +1107312,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867710,6 +1107393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867729,6 +1107415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867780,6 +1107469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867799,6 +1107491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867877,6 +1107572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867896,6 +1107594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -867947,6 +1107648,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -867966,6 +1107670,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868044,6 +1107751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868063,6 +1107773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868114,6 +1107827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868133,6 +1107849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868211,6 +1107930,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868230,6 +1107952,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868281,6 +1108006,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868300,6 +1108028,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868378,6 +1108109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868397,6 +1108131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868448,6 +1108185,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868467,6 +1108207,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868545,6 +1108288,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868564,6 +1108310,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868615,6 +1108364,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868634,6 +1108386,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868712,6 +1108467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868731,6 +1108489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868782,6 +1108543,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868801,6 +1108565,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868879,6 +1108646,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868898,6 +1108668,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -868949,6 +1108722,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -868968,6 +1108744,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869046,6 +1108825,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869065,6 +1108847,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869116,6 +1108901,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869135,6 +1108923,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869213,6 +1109004,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869232,6 +1109026,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869283,6 +1109080,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869302,6 +1109102,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869380,6 +1109183,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869399,6 +1109205,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869450,6 +1109259,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869469,6 +1109281,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869547,6 +1109362,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869566,6 +1109384,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869617,6 +1109438,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869636,6 +1109460,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869714,6 +1109541,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869733,6 +1109563,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869784,6 +1109617,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869803,6 +1109639,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869881,6 +1109720,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869900,6 +1109742,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -869951,6 +1109796,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -869970,6 +1109818,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870048,6 +1109899,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870067,6 +1109921,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870118,6 +1109975,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870137,6 +1109997,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870215,6 +1110078,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870234,6 +1110100,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870285,6 +1110154,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870304,6 +1110176,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870382,6 +1110257,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870401,6 +1110279,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870452,6 +1110333,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870471,6 +1110355,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870549,6 +1110436,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870568,6 +1110458,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870619,6 +1110512,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870638,6 +1110534,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870716,6 +1110615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870735,6 +1110637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870786,6 +1110691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870805,6 +1110713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870883,6 +1110794,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870902,6 +1110816,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -870953,6 +1110870,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -870972,6 +1110892,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871050,6 +1110973,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871069,6 +1110995,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871120,6 +1111049,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871139,6 +1111071,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871217,6 +1111152,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871236,6 +1111174,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871287,6 +1111228,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871306,6 +1111250,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871384,6 +1111331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871403,6 +1111353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871454,6 +1111407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871473,6 +1111429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871551,6 +1111510,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871570,6 +1111532,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871621,6 +1111586,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871640,6 +1111608,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871718,6 +1111689,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871737,6 +1111711,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871788,6 +1111765,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871807,6 +1111787,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871885,6 +1111868,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871904,6 +1111890,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -871955,6 +1111944,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -871974,6 +1111966,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872052,6 +1112047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872071,6 +1112069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872122,6 +1112123,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872141,6 +1112145,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872219,6 +1112226,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872238,6 +1112248,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872289,6 +1112302,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872308,6 +1112324,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872386,6 +1112405,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872405,6 +1112427,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872456,6 +1112481,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872475,6 +1112503,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872553,6 +1112584,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872572,6 +1112606,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872623,6 +1112660,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872642,6 +1112682,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872720,6 +1112763,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872739,6 +1112785,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872790,6 +1112839,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872809,6 +1112861,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872887,6 +1112942,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872906,6 +1112964,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -872957,6 +1113018,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -872976,6 +1113040,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873054,6 +1113121,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873073,6 +1113143,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873124,6 +1113197,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873143,6 +1113219,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873221,6 +1113300,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873240,6 +1113322,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873291,6 +1113376,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873310,6 +1113398,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873388,6 +1113479,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873407,6 +1113501,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873458,6 +1113555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873477,6 +1113577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873555,6 +1113658,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873574,6 +1113680,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873625,6 +1113734,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873644,6 +1113756,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873722,6 +1113837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873741,6 +1113859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873792,6 +1113913,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873811,6 +1113935,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873889,6 +1114016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873908,6 +1114038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -873959,6 +1114092,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -873978,6 +1114114,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874056,6 +1114195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874075,6 +1114217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874126,6 +1114271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874145,6 +1114293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874223,6 +1114374,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874242,6 +1114396,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874293,6 +1114450,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874312,6 +1114472,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874390,6 +1114553,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874409,6 +1114575,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874460,6 +1114629,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874479,6 +1114651,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874557,6 +1114732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874576,6 +1114754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874627,6 +1114808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874646,6 +1114830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874724,6 +1114911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874743,6 +1114933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874794,6 +1114987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874813,6 +1115009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874891,6 +1115090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874910,6 +1115112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -874961,6 +1115166,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -874980,6 +1115188,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875058,6 +1115269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875077,6 +1115291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875128,6 +1115345,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875147,6 +1115367,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875225,6 +1115448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875244,6 +1115470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875295,6 +1115524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875314,6 +1115546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875392,6 +1115627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875411,6 +1115649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875462,6 +1115703,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875481,6 +1115725,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875559,6 +1115806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875578,6 +1115828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875629,6 +1115882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875648,6 +1115904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875726,6 +1115985,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875745,6 +1116007,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875796,6 +1116061,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875815,6 +1116083,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875893,6 +1116164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875912,6 +1116186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -875963,6 +1116240,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -875982,6 +1116262,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876060,6 +1116343,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876079,6 +1116365,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876130,6 +1116419,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876149,6 +1116441,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876227,6 +1116522,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876246,6 +1116544,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876297,6 +1116598,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876316,6 +1116620,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876394,6 +1116701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876413,6 +1116723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876464,6 +1116777,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876483,6 +1116799,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876561,6 +1116880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876580,6 +1116902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876631,6 +1116956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876650,6 +1116978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876728,6 +1117059,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876747,6 +1117081,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876798,6 +1117135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876817,6 +1117157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876895,6 +1117238,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876914,6 +1117260,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -876965,6 +1117314,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -876984,6 +1117336,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877062,6 +1117417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877081,6 +1117439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877132,6 +1117493,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877151,6 +1117515,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877229,6 +1117596,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877248,6 +1117618,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877299,6 +1117672,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877318,6 +1117694,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877396,6 +1117775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877415,6 +1117797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877466,6 +1117851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877485,6 +1117873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877563,6 +1117954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877582,6 +1117976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877633,6 +1118030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877652,6 +1118052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877730,6 +1118133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877749,6 +1118155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877800,6 +1118209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877819,6 +1118231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877897,6 +1118312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877916,6 +1118334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -877967,6 +1118388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -877986,6 +1118410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878064,6 +1118491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878083,6 +1118513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878134,6 +1118567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878153,6 +1118589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878231,6 +1118670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878250,6 +1118692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878301,6 +1118746,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878320,6 +1118768,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878398,6 +1118849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878417,6 +1118871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878468,6 +1118925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878487,6 +1118947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878565,6 +1119028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878584,6 +1119050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878635,6 +1119104,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878654,6 +1119126,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878732,6 +1119207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878751,6 +1119229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878802,6 +1119283,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878821,6 +1119305,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878899,6 +1119386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878918,6 +1119408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -878969,6 +1119462,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -878988,6 +1119484,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879066,6 +1119565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879085,6 +1119587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879136,6 +1119641,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879155,6 +1119663,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879233,6 +1119744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879252,6 +1119766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879303,6 +1119820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879322,6 +1119842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879400,6 +1119923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879419,6 +1119945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879470,6 +1119999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879489,6 +1120021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879567,6 +1120102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879586,6 +1120124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879637,6 +1120178,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879656,6 +1120200,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879734,6 +1120281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879753,6 +1120303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879804,6 +1120357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879823,6 +1120379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879901,6 +1120460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879920,6 +1120482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -879971,6 +1120536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -879990,6 +1120558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880068,6 +1120639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880087,6 +1120661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880138,6 +1120715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880157,6 +1120737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880235,6 +1120818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880254,6 +1120840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880305,6 +1120894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880324,6 +1120916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880402,6 +1120997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880421,6 +1121019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880472,6 +1121073,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880491,6 +1121095,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880569,6 +1121176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880588,6 +1121198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880639,6 +1121252,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880658,6 +1121274,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880736,6 +1121355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880755,6 +1121377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880806,6 +1121431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880825,6 +1121453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880903,6 +1121534,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880922,6 +1121556,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -880973,6 +1121610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -880992,6 +1121632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881070,6 +1121713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881089,6 +1121735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881140,6 +1121789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881159,6 +1121811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881237,6 +1121892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881256,6 +1121914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881307,6 +1121968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881326,6 +1121990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881404,6 +1122071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881423,6 +1122093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881474,6 +1122147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881493,6 +1122169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881571,6 +1122250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881590,6 +1122272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881641,6 +1122326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881660,6 +1122348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881738,6 +1122429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881757,6 +1122451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881808,6 +1122505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881827,6 +1122527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881905,6 +1122608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881924,6 +1122630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -881975,6 +1122684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -881994,6 +1122706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882072,6 +1122787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882091,6 +1122809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882142,6 +1122863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882161,6 +1122885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882239,6 +1122966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882258,6 +1122988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882309,6 +1123042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882328,6 +1123064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882406,6 +1123145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882425,6 +1123167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882476,6 +1123221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882495,6 +1123243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882573,6 +1123324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882592,6 +1123346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882643,6 +1123400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882662,6 +1123422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882740,6 +1123503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882759,6 +1123525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882810,6 +1123579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882829,6 +1123601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882907,6 +1123682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882926,6 +1123704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -882977,6 +1123758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -882996,6 +1123780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883074,6 +1123861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883093,6 +1123883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883144,6 +1123937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883163,6 +1123959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883241,6 +1124040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883260,6 +1124062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883311,6 +1124116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883330,6 +1124138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883408,6 +1124219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883427,6 +1124241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883478,6 +1124295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883497,6 +1124317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883575,6 +1124398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883594,6 +1124420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883645,6 +1124474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883664,6 +1124496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883742,6 +1124577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883761,6 +1124599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883812,6 +1124653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883831,6 +1124675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883909,6 +1124756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883928,6 +1124778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -883979,6 +1124832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -883998,6 +1124854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884076,6 +1124935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884095,6 +1124957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884146,6 +1125011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884165,6 +1125033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884243,6 +1125114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884262,6 +1125136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884313,6 +1125190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884332,6 +1125212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884410,6 +1125293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884429,6 +1125315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884480,6 +1125369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884499,6 +1125391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884577,6 +1125472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884596,6 +1125494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884647,6 +1125548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884666,6 +1125570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884744,6 +1125651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884763,6 +1125673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884814,6 +1125727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884833,6 +1125749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884911,6 +1125830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -884930,6 +1125852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -884981,6 +1125906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885000,6 +1125928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885078,6 +1126009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885097,6 +1126031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885148,6 +1126085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885167,6 +1126107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885245,6 +1126188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885264,6 +1126210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885315,6 +1126264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885334,6 +1126286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885412,6 +1126367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885431,6 +1126389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885482,6 +1126443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885501,6 +1126465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885579,6 +1126546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885598,6 +1126568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885649,6 +1126622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885668,6 +1126644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885746,6 +1126725,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885765,6 +1126747,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885816,6 +1126801,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885835,6 +1126823,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885913,6 +1126904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -885932,6 +1126926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -885983,6 +1126980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886002,6 +1127002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886080,6 +1127083,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886099,6 +1127105,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886150,6 +1127159,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886169,6 +1127181,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886247,6 +1127262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886266,6 +1127284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886317,6 +1127338,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886336,6 +1127360,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886414,6 +1127441,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886433,6 +1127463,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886484,6 +1127517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886503,6 +1127539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886581,6 +1127620,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886600,6 +1127642,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886651,6 +1127696,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886670,6 +1127718,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886748,6 +1127799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886767,6 +1127821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886818,6 +1127875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886837,6 +1127897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886915,6 +1127978,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -886934,6 +1128000,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -886985,6 +1128054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887004,6 +1128076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887082,6 +1128157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887101,6 +1128179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887152,6 +1128233,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887171,6 +1128255,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887249,6 +1128336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887268,6 +1128358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887319,6 +1128412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887338,6 +1128434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887416,6 +1128515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887435,6 +1128537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887486,6 +1128591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887505,6 +1128613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887583,6 +1128694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887602,6 +1128716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887653,6 +1128770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887672,6 +1128792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887750,6 +1128873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887769,6 +1128895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887820,6 +1128949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887839,6 +1128971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887917,6 +1129052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -887936,6 +1129074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -887987,6 +1129128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888006,6 +1129150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888084,6 +1129231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888103,6 +1129253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888154,6 +1129307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888173,6 +1129329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888251,6 +1129410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888270,6 +1129432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888321,6 +1129486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888340,6 +1129508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888418,6 +1129589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888437,6 +1129611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888488,6 +1129665,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888507,6 +1129687,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888585,6 +1129768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888604,6 +1129790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888655,6 +1129844,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888674,6 +1129866,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888752,6 +1129947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888771,6 +1129969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888822,6 +1130023,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888841,6 +1130045,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888919,6 +1130126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -888938,6 +1130148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -888989,6 +1130202,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889008,6 +1130224,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889086,6 +1130305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889105,6 +1130327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889156,6 +1130381,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889175,6 +1130403,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889253,6 +1130484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889272,6 +1130506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889323,6 +1130560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889342,6 +1130582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889420,6 +1130663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889439,6 +1130685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889490,6 +1130739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889509,6 +1130761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889587,6 +1130842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889606,6 +1130864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889657,6 +1130918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889676,6 +1130940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889754,6 +1131021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889773,6 +1131043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889824,6 +1131097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889843,6 +1131119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889921,6 +1131200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -889940,6 +1131222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -889991,6 +1131276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890010,6 +1131298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890088,6 +1131379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890107,6 +1131401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890158,6 +1131455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890177,6 +1131477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890255,6 +1131558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890274,6 +1131580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890325,6 +1131634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890344,6 +1131656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890422,6 +1131737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890441,6 +1131759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890492,6 +1131813,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890511,6 +1131835,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890589,6 +1131916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890608,6 +1131938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890659,6 +1131992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890678,6 +1132014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890756,6 +1132095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890775,6 +1132117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890826,6 +1132171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890845,6 +1132193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890923,6 +1132274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -890942,6 +1132296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -890993,6 +1132350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891012,6 +1132372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891090,6 +1132453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891109,6 +1132475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891160,6 +1132529,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891179,6 +1132551,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891257,6 +1132632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891276,6 +1132654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891327,6 +1132708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891346,6 +1132730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891424,6 +1132811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891443,6 +1132833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891494,6 +1132887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891513,6 +1132909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891591,6 +1132990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891610,6 +1133012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891661,6 +1133066,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891680,6 +1133088,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891758,6 +1133169,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891777,6 +1133191,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891828,6 +1133245,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891847,6 +1133267,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891925,6 +1133348,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -891944,6 +1133370,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -891995,6 +1133424,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892014,6 +1133446,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892092,6 +1133527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892111,6 +1133549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892162,6 +1133603,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892181,6 +1133625,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892259,6 +1133706,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892278,6 +1133728,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892329,6 +1133782,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892348,6 +1133804,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892426,6 +1133885,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892445,6 +1133907,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892496,6 +1133961,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892515,6 +1133983,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892593,6 +1134064,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892612,6 +1134086,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892663,6 +1134140,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892682,6 +1134162,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892760,6 +1134243,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892779,6 +1134265,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892830,6 +1134319,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892849,6 +1134341,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892927,6 +1134422,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -892946,6 +1134444,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -892997,6 +1134498,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893016,6 +1134520,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893094,6 +1134601,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893113,6 +1134623,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893164,6 +1134677,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893183,6 +1134699,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893261,6 +1134780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893280,6 +1134802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893331,6 +1134856,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893350,6 +1134878,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893428,6 +1134959,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893447,6 +1134981,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893498,6 +1135035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893517,6 +1135057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893595,6 +1135138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893614,6 +1135160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893665,6 +1135214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893684,6 +1135236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893762,6 +1135317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893781,6 +1135339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893832,6 +1135393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893851,6 +1135415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893929,6 +1135496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -893948,6 +1135518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -893999,6 +1135572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894018,6 +1135594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894096,6 +1135675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894115,6 +1135697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894166,6 +1135751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894185,6 +1135773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894263,6 +1135854,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894282,6 +1135876,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894333,6 +1135930,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894352,6 +1135952,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894430,6 +1136033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894449,6 +1136055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894500,6 +1136109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894519,6 +1136131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894597,6 +1136212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894616,6 +1136234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894667,6 +1136288,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894686,6 +1136310,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894764,6 +1136391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894783,6 +1136413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894834,6 +1136467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894853,6 +1136489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -894931,6 +1136570,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -894950,6 +1136592,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895001,6 +1136646,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895020,6 +1136668,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895098,6 +1136749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895117,6 +1136771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895168,6 +1136825,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895187,6 +1136847,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895265,6 +1136928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895284,6 +1136950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895335,6 +1137004,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895354,6 +1137026,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895432,6 +1137107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895451,6 +1137129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895502,6 +1137183,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895521,6 +1137205,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895599,6 +1137286,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895618,6 +1137308,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895669,6 +1137362,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895688,6 +1137384,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895766,6 +1137465,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895785,6 +1137487,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895836,6 +1137541,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895855,6 +1137563,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -895933,6 +1137644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -895952,6 +1137666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896003,6 +1137720,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896022,6 +1137742,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896100,6 +1137823,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896119,6 +1137845,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896170,6 +1137899,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896189,6 +1137921,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896267,6 +1138002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896286,6 +1138024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896337,6 +1138078,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896356,6 +1138100,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896434,6 +1138181,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896453,6 +1138203,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896504,6 +1138257,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896523,6 +1138279,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896601,6 +1138360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896620,6 +1138382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896671,6 +1138436,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896690,6 +1138458,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896768,6 +1138539,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896787,6 +1138561,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896838,6 +1138615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896857,6 +1138637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -896935,6 +1138718,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -896954,6 +1138740,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897005,6 +1138794,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897024,6 +1138816,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897102,6 +1138897,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897121,6 +1138919,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897172,6 +1138973,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897191,6 +1138995,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897269,6 +1139076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897288,6 +1139098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897339,6 +1139152,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897358,6 +1139174,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897436,6 +1139255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897455,6 +1139277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897506,6 +1139331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897525,6 +1139353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897603,6 +1139434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897622,6 +1139456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897673,6 +1139510,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897692,6 +1139532,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897770,6 +1139613,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897789,6 +1139635,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897840,6 +1139689,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897859,6 +1139711,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -897937,6 +1139792,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -897956,6 +1139814,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898007,6 +1139868,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898026,6 +1139890,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898104,6 +1139971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898123,6 +1139993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898174,6 +1140047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898193,6 +1140069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898271,6 +1140150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898290,6 +1140172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898341,6 +1140226,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898360,6 +1140248,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898438,6 +1140329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898457,6 +1140351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898508,6 +1140405,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898527,6 +1140427,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898605,6 +1140508,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898624,6 +1140530,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898675,6 +1140584,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898694,6 +1140606,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898772,6 +1140687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898791,6 +1140709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898842,6 +1140763,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898861,6 +1140785,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -898939,6 +1140866,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -898958,6 +1140888,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899009,6 +1140942,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899028,6 +1140964,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899106,6 +1141045,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899125,6 +1141067,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899176,6 +1141121,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899195,6 +1141143,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899273,6 +1141224,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899292,6 +1141246,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899343,6 +1141300,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899362,6 +1141322,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899440,6 +1141403,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899459,6 +1141425,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899510,6 +1141479,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899529,6 +1141501,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899607,6 +1141582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899626,6 +1141604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899677,6 +1141658,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899696,6 +1141680,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899774,6 +1141761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899793,6 +1141783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899844,6 +1141837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899863,6 +1141859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -899941,6 +1141940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -899960,6 +1141962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900011,6 +1142016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900030,6 +1142038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900108,6 +1142119,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900127,6 +1142141,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900178,6 +1142195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900197,6 +1142217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900275,6 +1142298,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900294,6 +1142320,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900345,6 +1142374,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900364,6 +1142396,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900442,6 +1142477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900461,6 +1142499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900512,6 +1142553,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900531,6 +1142575,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900609,6 +1142656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900628,6 +1142678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900679,6 +1142732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900698,6 +1142754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900776,6 +1142835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900795,6 +1142857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900846,6 +1142911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900865,6 +1142933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -900943,6 +1143014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -900962,6 +1143036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901013,6 +1143090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901032,6 +1143112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901110,6 +1143193,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901129,6 +1143215,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901180,6 +1143269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901199,6 +1143291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901277,6 +1143372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901296,6 +1143394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901347,6 +1143448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901366,6 +1143470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901444,6 +1143551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901463,6 +1143573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901514,6 +1143627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901533,6 +1143649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901611,6 +1143730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901630,6 +1143752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901681,6 +1143806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901700,6 +1143828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901778,6 +1143909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901797,6 +1143931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901848,6 +1143985,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901867,6 +1144007,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -901945,6 +1144088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -901964,6 +1144110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902015,6 +1144164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902034,6 +1144186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902112,6 +1144267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902131,6 +1144289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902182,6 +1144343,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902201,6 +1144365,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902279,6 +1144446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902298,6 +1144468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902349,6 +1144522,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902368,6 +1144544,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902446,6 +1144625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902465,6 +1144647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902516,6 +1144701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902535,6 +1144723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902613,6 +1144804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902632,6 +1144826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902683,6 +1144880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902702,6 +1144902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902780,6 +1144983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902799,6 +1145005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902850,6 +1145059,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902869,6 +1145081,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -902947,6 +1145162,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -902966,6 +1145184,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903017,6 +1145238,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903036,6 +1145260,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903114,6 +1145341,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903133,6 +1145363,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903184,6 +1145417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903203,6 +1145439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903281,6 +1145520,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903300,6 +1145542,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903351,6 +1145596,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903370,6 +1145618,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903448,6 +1145699,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903467,6 +1145721,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903518,6 +1145775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903537,6 +1145797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903615,6 +1145878,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903634,6 +1145900,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903685,6 +1145954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903704,6 +1145976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903782,6 +1146057,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903801,6 +1146079,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903852,6 +1146133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903871,6 +1146155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -903949,6 +1146236,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -903968,6 +1146258,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904019,6 +1146312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904038,6 +1146334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904116,6 +1146415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904135,6 +1146437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904186,6 +1146491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904205,6 +1146513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904283,6 +1146594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904302,6 +1146616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904353,6 +1146670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904372,6 +1146692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904450,6 +1146773,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904469,6 +1146795,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904520,6 +1146849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904539,6 +1146871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904617,6 +1146952,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904636,6 +1146974,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904687,6 +1147028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904706,6 +1147050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904784,6 +1147131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904803,6 +1147153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904854,6 +1147207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904873,6 +1147229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -904951,6 +1147310,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -904970,6 +1147332,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905021,6 +1147386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905040,6 +1147408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905118,6 +1147489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905137,6 +1147511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905188,6 +1147565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905207,6 +1147587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905285,6 +1147668,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905304,6 +1147690,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905355,6 +1147744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905374,6 +1147766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905452,6 +1147847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905471,6 +1147869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905522,6 +1147923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905541,6 +1147945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905619,6 +1148026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905638,6 +1148048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905689,6 +1148102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905708,6 +1148124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905786,6 +1148205,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905805,6 +1148227,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905856,6 +1148281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905875,6 +1148303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -905953,6 +1148384,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -905972,6 +1148406,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906023,6 +1148460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906042,6 +1148482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906120,6 +1148563,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906139,6 +1148585,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906190,6 +1148639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906209,6 +1148661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906287,6 +1148742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906306,6 +1148764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906357,6 +1148818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906376,6 +1148840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906454,6 +1148921,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906473,6 +1148943,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906524,6 +1148997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906543,6 +1149019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906621,6 +1149100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906640,6 +1149122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906691,6 +1149176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906710,6 +1149198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906788,6 +1149279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906807,6 +1149301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906858,6 +1149355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906877,6 +1149377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -906955,6 +1149458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -906974,6 +1149480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907025,6 +1149534,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907044,6 +1149556,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907122,6 +1149637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907141,6 +1149659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907192,6 +1149713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907211,6 +1149735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907289,6 +1149816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907308,6 +1149838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907359,6 +1149892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907378,6 +1149914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907456,6 +1149995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907475,6 +1150017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907526,6 +1150071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907545,6 +1150093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907623,6 +1150174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907642,6 +1150196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907693,6 +1150250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907712,6 +1150272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907790,6 +1150353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907809,6 +1150375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907860,6 +1150429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907879,6 +1150451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -907957,6 +1150532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -907976,6 +1150554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908027,6 +1150608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908046,6 +1150630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908124,6 +1150711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908143,6 +1150733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908194,6 +1150787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908213,6 +1150809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908291,6 +1150890,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908310,6 +1150912,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908361,6 +1150966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908380,6 +1150988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908458,6 +1151069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908477,6 +1151091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908528,6 +1151145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908547,6 +1151167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908625,6 +1151248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908644,6 +1151270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908695,6 +1151324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908714,6 +1151346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908792,6 +1151427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908811,6 +1151449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908862,6 +1151503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908881,6 +1151525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -908959,6 +1151606,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -908978,6 +1151628,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909029,6 +1151682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909048,6 +1151704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909126,6 +1151785,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909145,6 +1151807,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909196,6 +1151861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909215,6 +1151883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909293,6 +1151964,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909312,6 +1151986,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909363,6 +1152040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909382,6 +1152062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909460,6 +1152143,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909479,6 +1152165,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909530,6 +1152219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909549,6 +1152241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909627,6 +1152322,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909646,6 +1152344,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909697,6 +1152398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909716,6 +1152420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909794,6 +1152501,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909813,6 +1152523,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909864,6 +1152577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909883,6 +1152599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -909961,6 +1152680,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -909980,6 +1152702,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910031,6 +1152756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910050,6 +1152778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910128,6 +1152859,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910147,6 +1152881,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910198,6 +1152935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910217,6 +1152957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910295,6 +1153038,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910314,6 +1153060,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910365,6 +1153114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910384,6 +1153136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910462,6 +1153217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910481,6 +1153239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910532,6 +1153293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910551,6 +1153315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910629,6 +1153396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910648,6 +1153418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910699,6 +1153472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910718,6 +1153494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910796,6 +1153575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910815,6 +1153597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910866,6 +1153651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910885,6 +1153673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -910963,6 +1153754,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -910982,6 +1153776,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911033,6 +1153830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911052,6 +1153852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911130,6 +1153933,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911149,6 +1153955,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911200,6 +1154009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911219,6 +1154031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911297,6 +1154112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911316,6 +1154134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911367,6 +1154188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911386,6 +1154210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911464,6 +1154291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911483,6 +1154313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911534,6 +1154367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911553,6 +1154389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911631,6 +1154470,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911650,6 +1154492,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911701,6 +1154546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911720,6 +1154568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911798,6 +1154649,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911817,6 +1154671,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911868,6 +1154725,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911887,6 +1154747,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -911965,6 +1154828,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -911984,6 +1154850,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912035,6 +1154904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912054,6 +1154926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912132,6 +1155007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912151,6 +1155029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912202,6 +1155083,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912221,6 +1155105,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912299,6 +1155186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912318,6 +1155208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912369,6 +1155262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912388,6 +1155284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912466,6 +1155365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912485,6 +1155387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912536,6 +1155441,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912555,6 +1155463,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912633,6 +1155544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912652,6 +1155566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912703,6 +1155620,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912722,6 +1155642,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912800,6 +1155723,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912819,6 +1155745,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912870,6 +1155799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912889,6 +1155821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -912967,6 +1155902,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -912986,6 +1155924,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913037,6 +1155978,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913056,6 +1156000,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913134,6 +1156081,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913153,6 +1156103,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913204,6 +1156157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913223,6 +1156179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913301,6 +1156260,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913320,6 +1156282,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913371,6 +1156336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913390,6 +1156358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913468,6 +1156439,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913487,6 +1156461,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913538,6 +1156515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913557,6 +1156537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913635,6 +1156618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913654,6 +1156640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913705,6 +1156694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913724,6 +1156716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913802,6 +1156797,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913821,6 +1156819,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913872,6 +1156873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913891,6 +1156895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -913969,6 +1156976,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -913988,6 +1156998,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914039,6 +1157052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914058,6 +1157074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914136,6 +1157155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914155,6 +1157177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914206,6 +1157231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914225,6 +1157253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914303,6 +1157334,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914322,6 +1157356,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914373,6 +1157410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914392,6 +1157432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914470,6 +1157513,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914489,6 +1157535,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914540,6 +1157589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914559,6 +1157611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914637,6 +1157692,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914656,6 +1157714,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914707,6 +1157768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914726,6 +1157790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914804,6 +1157871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914823,6 +1157893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914874,6 +1157947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914893,6 +1157969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -914971,6 +1158050,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -914990,6 +1158072,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915041,6 +1158126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915060,6 +1158148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915138,6 +1158229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915157,6 +1158251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915208,6 +1158305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915227,6 +1158327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915305,6 +1158408,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915324,6 +1158430,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915375,6 +1158484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915394,6 +1158506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915472,6 +1158587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915491,6 +1158609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915542,6 +1158663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915561,6 +1158685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915639,6 +1158766,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915658,6 +1158788,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915709,6 +1158842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915728,6 +1158864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915806,6 +1158945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915825,6 +1158967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915876,6 +1159021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915895,6 +1159043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -915973,6 +1159124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -915992,6 +1159146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916043,6 +1159200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916062,6 +1159222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916140,6 +1159303,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916159,6 +1159325,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916210,6 +1159379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916229,6 +1159401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916307,6 +1159482,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916326,6 +1159504,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916377,6 +1159558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916396,6 +1159580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916474,6 +1159661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916493,6 +1159683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916544,6 +1159737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916563,6 +1159759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916641,6 +1159840,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916660,6 +1159862,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916711,6 +1159916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916730,6 +1159938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916808,6 +1160019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916827,6 +1160041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916878,6 +1160095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916897,6 +1160117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -916975,6 +1160198,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -916994,6 +1160220,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917045,6 +1160274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917064,6 +1160296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917142,6 +1160377,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917161,6 +1160399,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917212,6 +1160453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917231,6 +1160475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917309,6 +1160556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917328,6 +1160578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917379,6 +1160632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917398,6 +1160654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917476,6 +1160735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917495,6 +1160757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917546,6 +1160811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917565,6 +1160833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917643,6 +1160914,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917662,6 +1160936,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917713,6 +1160990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917732,6 +1161012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917810,6 +1161093,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917829,6 +1161115,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917880,6 +1161169,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917899,6 +1161191,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -917977,6 +1161272,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -917996,6 +1161294,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918047,6 +1161348,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918066,6 +1161370,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918144,6 +1161451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918163,6 +1161473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918214,6 +1161527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918233,6 +1161549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918311,6 +1161630,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918330,6 +1161652,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918381,6 +1161706,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918400,6 +1161728,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918478,6 +1161809,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918497,6 +1161831,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918548,6 +1161885,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918567,6 +1161907,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918645,6 +1161988,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918664,6 +1162010,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918715,6 +1162064,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918734,6 +1162086,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918812,6 +1162167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918831,6 +1162189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918882,6 +1162243,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918901,6 +1162265,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -918979,6 +1162346,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -918998,6 +1162368,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919049,6 +1162422,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919068,6 +1162444,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919146,6 +1162525,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919165,6 +1162547,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919216,6 +1162601,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919235,6 +1162623,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919313,6 +1162704,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919332,6 +1162726,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919383,6 +1162780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919402,6 +1162802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919480,6 +1162883,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919499,6 +1162905,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919550,6 +1162959,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919569,6 +1162981,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919647,6 +1163062,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919666,6 +1163084,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919717,6 +1163138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919736,6 +1163160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919814,6 +1163241,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919833,6 +1163263,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919884,6 +1163317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -919903,6 +1163339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -919981,6 +1163420,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920000,6 +1163442,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920051,6 +1163496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920070,6 +1163518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920148,6 +1163599,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920167,6 +1163621,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920218,6 +1163675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920237,6 +1163697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920315,6 +1163778,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920334,6 +1163800,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920385,6 +1163854,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920404,6 +1163876,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920482,6 +1163957,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920501,6 +1163979,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920552,6 +1164033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920571,6 +1164055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920649,6 +1164136,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920668,6 +1164158,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920719,6 +1164212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920738,6 +1164234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920816,6 +1164315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920835,6 +1164337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920886,6 +1164391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -920905,6 +1164413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -920983,6 +1164494,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921002,6 +1164516,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921053,6 +1164570,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921072,6 +1164592,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921150,6 +1164673,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921169,6 +1164695,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921220,6 +1164749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921239,6 +1164771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921317,6 +1164852,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921336,6 +1164874,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921387,6 +1164928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921406,6 +1164950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921484,6 +1165031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921503,6 +1165053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921554,6 +1165107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921573,6 +1165129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921651,6 +1165210,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921670,6 +1165232,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921721,6 +1165286,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921740,6 +1165308,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921818,6 +1165389,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921837,6 +1165411,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921888,6 +1165465,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -921907,6 +1165487,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -921985,6 +1165568,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922004,6 +1165590,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922055,6 +1165644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922074,6 +1165666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922152,6 +1165747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922171,6 +1165769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922222,6 +1165823,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922241,6 +1165845,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922319,6 +1165926,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922338,6 +1165948,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922389,6 +1166002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922408,6 +1166024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922486,6 +1166105,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922505,6 +1166127,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922556,6 +1166181,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922575,6 +1166203,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922653,6 +1166284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922672,6 +1166306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922723,6 +1166360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922742,6 +1166382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922820,6 +1166463,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922839,6 +1166485,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922890,6 +1166539,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -922909,6 +1166561,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -922987,6 +1166642,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923006,6 +1166664,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923057,6 +1166718,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923076,6 +1166740,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923154,6 +1166821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923173,6 +1166843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923224,6 +1166897,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923243,6 +1166919,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923321,6 +1167000,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923340,6 +1167022,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923391,6 +1167076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923410,6 +1167098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923488,6 +1167179,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923507,6 +1167201,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923558,6 +1167255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923577,6 +1167277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923655,6 +1167358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923674,6 +1167380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923725,6 +1167434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923744,6 +1167456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923822,6 +1167537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923841,6 +1167559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923892,6 +1167613,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -923911,6 +1167635,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -923989,6 +1167716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924008,6 +1167738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924059,6 +1167792,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924078,6 +1167814,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924156,6 +1167895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924175,6 +1167917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924226,6 +1167971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924245,6 +1167993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924323,6 +1168074,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924342,6 +1168096,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924393,6 +1168150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924412,6 +1168172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924490,6 +1168253,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924509,6 +1168275,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924560,6 +1168329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924579,6 +1168351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924657,6 +1168432,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924676,6 +1168454,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924727,6 +1168508,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924746,6 +1168530,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924824,6 +1168611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924843,6 +1168633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924894,6 +1168687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -924913,6 +1168709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -924991,6 +1168790,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925010,6 +1168812,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925061,6 +1168866,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925080,6 +1168888,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925158,6 +1168969,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925177,6 +1168991,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925228,6 +1169045,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925247,6 +1169067,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925325,6 +1169148,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925344,6 +1169170,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925395,6 +1169224,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925414,6 +1169246,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925492,6 +1169327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925511,6 +1169349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925562,6 +1169403,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925581,6 +1169425,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925659,6 +1169506,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925678,6 +1169528,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925729,6 +1169582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925748,6 +1169604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925826,6 +1169685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925845,6 +1169707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925896,6 +1169761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -925915,6 +1169783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -925993,6 +1169864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926012,6 +1169886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926063,6 +1169940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926082,6 +1169962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926160,6 +1170043,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926179,6 +1170065,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926230,6 +1170119,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926249,6 +1170141,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926327,6 +1170222,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926346,6 +1170244,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926397,6 +1170298,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926416,6 +1170320,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926494,6 +1170401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926513,6 +1170423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926564,6 +1170477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926583,6 +1170499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926661,6 +1170580,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926680,6 +1170602,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926731,6 +1170656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926750,6 +1170678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926828,6 +1170759,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926847,6 +1170781,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926898,6 +1170835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -926917,6 +1170857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -926995,6 +1170938,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927014,6 +1170960,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927065,6 +1171014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927084,6 +1171036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927162,6 +1171117,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927181,6 +1171139,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927232,6 +1171193,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927251,6 +1171215,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927329,6 +1171296,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927348,6 +1171318,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927399,6 +1171372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927418,6 +1171394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927496,6 +1171475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927515,6 +1171497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927566,6 +1171551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927585,6 +1171573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927663,6 +1171654,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927682,6 +1171676,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927733,6 +1171730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927752,6 +1171752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927830,6 +1171833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927849,6 +1171855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927900,6 +1171909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -927919,6 +1171931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -927997,6 +1172012,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928016,6 +1172034,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928067,6 +1172088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928086,6 +1172110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928164,6 +1172191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928183,6 +1172213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928234,6 +1172267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928253,6 +1172289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928331,6 +1172370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928350,6 +1172392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928401,6 +1172446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928420,6 +1172468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928498,6 +1172549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928517,6 +1172571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928568,6 +1172625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928587,6 +1172647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928665,6 +1172728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928684,6 +1172750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928735,6 +1172804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928754,6 +1172826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928832,6 +1172907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928851,6 +1172929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928902,6 +1172983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -928921,6 +1173005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -928999,6 +1173086,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929018,6 +1173108,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929069,6 +1173162,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929088,6 +1173184,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929166,6 +1173265,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929185,6 +1173287,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929236,6 +1173341,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929255,6 +1173363,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929333,6 +1173444,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929352,6 +1173466,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929403,6 +1173520,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929422,6 +1173542,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929500,6 +1173623,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929519,6 +1173645,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929570,6 +1173699,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929589,6 +1173721,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929667,6 +1173802,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929686,6 +1173824,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929737,6 +1173878,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929756,6 +1173900,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929834,6 +1173981,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929853,6 +1174003,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -929904,6 +1174057,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -929923,6 +1174079,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930001,6 +1174160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930020,6 +1174182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930071,6 +1174236,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930090,6 +1174258,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930168,6 +1174339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930187,6 +1174361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930238,6 +1174415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930257,6 +1174437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930335,6 +1174518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930354,6 +1174540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930405,6 +1174594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930424,6 +1174616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930502,6 +1174697,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930521,6 +1174719,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930572,6 +1174773,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930591,6 +1174795,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930669,6 +1174876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930688,6 +1174898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930739,6 +1174952,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930758,6 +1174974,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930836,6 +1175055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930855,6 +1175077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -930906,6 +1175131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -930925,6 +1175153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931003,6 +1175234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931022,6 +1175256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931073,6 +1175310,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931092,6 +1175332,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931170,6 +1175413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931189,6 +1175435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931240,6 +1175489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931259,6 +1175511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931337,6 +1175592,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931356,6 +1175614,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931407,6 +1175668,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931426,6 +1175690,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931504,6 +1175771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931523,6 +1175793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931574,6 +1175847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931593,6 +1175869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931671,6 +1175950,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931690,6 +1175972,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931741,6 +1176026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931760,6 +1176048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931838,6 +1176129,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931857,6 +1176151,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -931908,6 +1176205,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -931927,6 +1176227,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932005,6 +1176308,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932024,6 +1176330,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932075,6 +1176384,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932094,6 +1176406,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932172,6 +1176487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932191,6 +1176509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932242,6 +1176563,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932261,6 +1176585,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932339,6 +1176666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932358,6 +1176688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932409,6 +1176742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932428,6 +1176764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932506,6 +1176845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932525,6 +1176867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932576,6 +1176921,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932595,6 +1176943,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932673,6 +1177024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932692,6 +1177046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932743,6 +1177100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932762,6 +1177122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932840,6 +1177203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932859,6 +1177225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -932910,6 +1177279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -932929,6 +1177301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933007,6 +1177382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933026,6 +1177404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933077,6 +1177458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933096,6 +1177480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933174,6 +1177561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933193,6 +1177583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933244,6 +1177637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933263,6 +1177659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933341,6 +1177740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933360,6 +1177762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933411,6 +1177816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933430,6 +1177838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933508,6 +1177919,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933527,6 +1177941,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933578,6 +1177995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933597,6 +1178017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933675,6 +1178098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933694,6 +1178120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933745,6 +1178174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933764,6 +1178196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933842,6 +1178277,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933861,6 +1178299,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -933912,6 +1178353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -933931,6 +1178375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934009,6 +1178456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934028,6 +1178478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934079,6 +1178532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934098,6 +1178554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934176,6 +1178635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934195,6 +1178657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934246,6 +1178711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934265,6 +1178733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934343,6 +1178814,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934362,6 +1178836,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934413,6 +1178890,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934432,6 +1178912,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934510,6 +1178993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934529,6 +1179015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934580,6 +1179069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934599,6 +1179091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934677,6 +1179172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934696,6 +1179194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934747,6 +1179248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934766,6 +1179270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934844,6 +1179351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934863,6 +1179373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -934914,6 +1179427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -934933,6 +1179449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935011,6 +1179530,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935030,6 +1179552,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935081,6 +1179606,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935100,6 +1179628,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935178,6 +1179709,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935197,6 +1179731,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935248,6 +1179785,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935267,6 +1179807,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935345,6 +1179888,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935364,6 +1179910,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935415,6 +1179964,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935434,6 +1179986,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935512,6 +1180067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935531,6 +1180089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935582,6 +1180143,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935601,6 +1180165,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935679,6 +1180246,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935698,6 +1180268,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935749,6 +1180322,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935768,6 +1180344,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935846,6 +1180425,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935865,6 +1180447,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -935916,6 +1180501,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -935935,6 +1180523,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936013,6 +1180604,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936032,6 +1180626,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936083,6 +1180680,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936102,6 +1180702,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936180,6 +1180783,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936199,6 +1180805,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936250,6 +1180859,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936269,6 +1180881,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936347,6 +1180962,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936366,6 +1180984,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936417,6 +1181038,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936436,6 +1181060,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936514,6 +1181141,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936533,6 +1181163,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936584,6 +1181217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936603,6 +1181239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936681,6 +1181320,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936700,6 +1181342,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936751,6 +1181396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936770,6 +1181418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936848,6 +1181499,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936867,6 +1181521,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -936918,6 +1181575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -936937,6 +1181597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937015,6 +1181678,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937034,6 +1181700,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937085,6 +1181754,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937104,6 +1181776,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937182,6 +1181857,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937201,6 +1181879,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937252,6 +1181933,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937271,6 +1181955,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937349,6 +1182036,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937368,6 +1182058,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937419,6 +1182112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937438,6 +1182134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937516,6 +1182215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937535,6 +1182237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937586,6 +1182291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937605,6 +1182313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937683,6 +1182394,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937702,6 +1182416,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937753,6 +1182470,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937772,6 +1182492,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937850,6 +1182573,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937869,6 +1182595,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -937920,6 +1182649,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -937939,6 +1182671,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938017,6 +1182752,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938036,6 +1182774,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938087,6 +1182828,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938106,6 +1182850,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938184,6 +1182931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938203,6 +1182953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938254,6 +1183007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938273,6 +1183029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938351,6 +1183110,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938370,6 +1183132,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938421,6 +1183186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938440,6 +1183208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938518,6 +1183289,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938537,6 +1183311,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938588,6 +1183365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938607,6 +1183387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938685,6 +1183468,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938704,6 +1183490,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938755,6 +1183544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938774,6 +1183566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938852,6 +1183647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938871,6 +1183669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -938922,6 +1183723,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -938941,6 +1183745,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939019,6 +1183826,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939038,6 +1183848,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939089,6 +1183902,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939108,6 +1183924,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939186,6 +1184005,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939205,6 +1184027,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939256,6 +1184081,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939275,6 +1184103,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939353,6 +1184184,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939372,6 +1184206,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939423,6 +1184260,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939442,6 +1184282,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939520,6 +1184363,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939539,6 +1184385,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939590,6 +1184439,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939609,6 +1184461,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939687,6 +1184542,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939706,6 +1184564,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939757,6 +1184618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939776,6 +1184640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939854,6 +1184721,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939873,6 +1184743,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -939924,6 +1184797,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -939943,6 +1184819,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940021,6 +1184900,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940040,6 +1184922,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940091,6 +1184976,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940110,6 +1184998,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940188,6 +1185079,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940207,6 +1185101,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940258,6 +1185155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940277,6 +1185177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940355,6 +1185258,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940374,6 +1185280,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940425,6 +1185334,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940444,6 +1185356,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940522,6 +1185437,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940541,6 +1185459,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940592,6 +1185513,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940611,6 +1185535,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940689,6 +1185616,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940708,6 +1185638,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940759,6 +1185692,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940778,6 +1185714,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940856,6 +1185795,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940875,6 +1185817,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -940926,6 +1185871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -940945,6 +1185893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941023,6 +1185974,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941042,6 +1185996,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941093,6 +1186050,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941112,6 +1186072,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941190,6 +1186153,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941209,6 +1186175,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941260,6 +1186229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941279,6 +1186251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941357,6 +1186332,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941376,6 +1186354,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941427,6 +1186408,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941446,6 +1186430,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941524,6 +1186511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941543,6 +1186533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941594,6 +1186587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941613,6 +1186609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941691,6 +1186690,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941710,6 +1186712,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941761,6 +1186766,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941780,6 +1186788,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941858,6 +1186869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941877,6 +1186891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -941928,6 +1186945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -941947,6 +1186967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942025,6 +1187048,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942044,6 +1187070,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942095,6 +1187124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942114,6 +1187146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942192,6 +1187227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942211,6 +1187249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942262,6 +1187303,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942281,6 +1187325,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942359,6 +1187406,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942378,6 +1187428,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942429,6 +1187482,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942448,6 +1187504,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942526,6 +1187585,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942545,6 +1187607,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942596,6 +1187661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942615,6 +1187683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942693,6 +1187764,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942712,6 +1187786,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942763,6 +1187840,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942782,6 +1187862,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942860,6 +1187943,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942879,6 +1187965,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -942930,6 +1188019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -942949,6 +1188041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943027,6 +1188122,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943046,6 +1188144,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943097,6 +1188198,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943116,6 +1188220,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943194,6 +1188301,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943213,6 +1188323,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943264,6 +1188377,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943283,6 +1188399,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943361,6 +1188480,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943380,6 +1188502,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943431,6 +1188556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943450,6 +1188578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943528,6 +1188659,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943547,6 +1188681,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943598,6 +1188735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943617,6 +1188757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943695,6 +1188838,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943714,6 +1188860,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943765,6 +1188914,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943784,6 +1188936,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943862,6 +1189017,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943881,6 +1189039,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -943932,6 +1189093,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -943951,6 +1189115,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944029,6 +1189196,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944048,6 +1189218,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944099,6 +1189272,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944118,6 +1189294,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944196,6 +1189375,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944215,6 +1189397,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944266,6 +1189451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944285,6 +1189473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944363,6 +1189554,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944382,6 +1189576,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944433,6 +1189630,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944452,6 +1189652,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944530,6 +1189733,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944549,6 +1189755,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944600,6 +1189809,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944619,6 +1189831,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944697,6 +1189912,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944716,6 +1189934,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944767,6 +1189988,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944786,6 +1190010,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944864,6 +1190091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944883,6 +1190113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -944934,6 +1190167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -944953,6 +1190189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945031,6 +1190270,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945050,6 +1190292,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945101,6 +1190346,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945120,6 +1190368,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945198,6 +1190449,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945217,6 +1190471,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945268,6 +1190525,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945287,6 +1190547,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945365,6 +1190628,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945384,6 +1190650,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945435,6 +1190704,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945454,6 +1190726,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945532,6 +1190807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945551,6 +1190829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945602,6 +1190883,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945621,6 +1190905,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945699,6 +1190986,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945718,6 +1191008,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945769,6 +1191062,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945788,6 +1191084,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945866,6 +1191165,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945885,6 +1191187,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -945936,6 +1191241,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -945955,6 +1191263,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946033,6 +1191344,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946052,6 +1191366,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946103,6 +1191420,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946122,6 +1191442,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946200,6 +1191523,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946219,6 +1191545,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946270,6 +1191599,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946289,6 +1191621,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946367,6 +1191702,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946386,6 +1191724,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946437,6 +1191778,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946456,6 +1191800,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946534,6 +1191881,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946553,6 +1191903,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946604,6 +1191957,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946623,6 +1191979,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946701,6 +1192060,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946720,6 +1192082,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946771,6 +1192136,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946790,6 +1192158,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946868,6 +1192239,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946887,6 +1192261,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -946938,6 +1192315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -946957,6 +1192337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947035,6 +1192418,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947054,6 +1192440,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947105,6 +1192494,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947124,6 +1192516,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947202,6 +1192597,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947221,6 +1192619,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947272,6 +1192673,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947291,6 +1192695,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947369,6 +1192776,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947388,6 +1192798,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947439,6 +1192852,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947458,6 +1192874,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947536,6 +1192955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947555,6 +1192977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947606,6 +1193031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947625,6 +1193053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947703,6 +1193134,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947722,6 +1193156,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947773,6 +1193210,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947792,6 +1193232,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947870,6 +1193313,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947889,6 +1193335,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -947940,6 +1193389,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -947959,6 +1193411,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948037,6 +1193492,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948056,6 +1193514,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948107,6 +1193568,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948126,6 +1193590,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948204,6 +1193671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948223,6 +1193693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948274,6 +1193747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948293,6 +1193769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948371,6 +1193850,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948390,6 +1193872,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948441,6 +1193926,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948460,6 +1193948,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948538,6 +1194029,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948557,6 +1194051,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948608,6 +1194105,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948627,6 +1194127,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948705,6 +1194208,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948724,6 +1194230,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948775,6 +1194284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948794,6 +1194306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948872,6 +1194387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948891,6 +1194409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -948942,6 +1194463,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -948961,6 +1194485,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949039,6 +1194566,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949058,6 +1194588,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949109,6 +1194642,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949128,6 +1194664,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949206,6 +1194745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949225,6 +1194767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949276,6 +1194821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949295,6 +1194843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949373,6 +1194924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949392,6 +1194946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949443,6 +1195000,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949462,6 +1195022,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949540,6 +1195103,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949559,6 +1195125,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949610,6 +1195179,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949629,6 +1195201,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949707,6 +1195282,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949726,6 +1195304,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949777,6 +1195358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949796,6 +1195380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949874,6 +1195461,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949893,6 +1195483,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -949944,6 +1195537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -949963,6 +1195559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950041,6 +1195640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950060,6 +1195662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950111,6 +1195716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950130,6 +1195738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950208,6 +1195819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950227,6 +1195841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950278,6 +1195895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950297,6 +1195917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950375,6 +1195998,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950394,6 +1196020,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950445,6 +1196074,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950464,6 +1196096,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950542,6 +1196177,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950561,6 +1196199,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950612,6 +1196253,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950631,6 +1196275,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950709,6 +1196356,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950728,6 +1196378,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950779,6 +1196432,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950798,6 +1196454,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950876,6 +1196535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950895,6 +1196557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -950946,6 +1196611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -950965,6 +1196633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951043,6 +1196714,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951062,6 +1196736,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951113,6 +1196790,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951132,6 +1196812,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951210,6 +1196893,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951229,6 +1196915,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951280,6 +1196969,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951299,6 +1196991,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951377,6 +1197072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951396,6 +1197094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951447,6 +1197148,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951466,6 +1197170,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951544,6 +1197251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951563,6 +1197273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951614,6 +1197327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951633,6 +1197349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951711,6 +1197430,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951730,6 +1197452,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951781,6 +1197506,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951800,6 +1197528,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951878,6 +1197609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951897,6 +1197631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -951948,6 +1197685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -951967,6 +1197707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952045,6 +1197788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952064,6 +1197810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952115,6 +1197864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952134,6 +1197886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952212,6 +1197967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952231,6 +1197989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952282,6 +1198043,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952301,6 +1198065,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952379,6 +1198146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952398,6 +1198168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952449,6 +1198222,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952468,6 +1198244,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952546,6 +1198325,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952565,6 +1198347,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952616,6 +1198401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952635,6 +1198423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952713,6 +1198504,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952732,6 +1198526,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952783,6 +1198580,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952802,6 +1198602,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952880,6 +1198683,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952899,6 +1198705,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -952950,6 +1198759,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -952969,6 +1198781,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953047,6 +1198862,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953066,6 +1198884,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953117,6 +1198938,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953136,6 +1198960,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953214,6 +1199041,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953233,6 +1199063,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953284,6 +1199117,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953303,6 +1199139,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953381,6 +1199220,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953400,6 +1199242,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953451,6 +1199296,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953470,6 +1199318,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953548,6 +1199399,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953567,6 +1199421,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953618,6 +1199475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953637,6 +1199497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953715,6 +1199578,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953734,6 +1199600,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953785,6 +1199654,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953804,6 +1199676,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953882,6 +1199757,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953901,6 +1199779,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -953952,6 +1199833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -953971,6 +1199855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954049,6 +1199936,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954068,6 +1199958,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954119,6 +1200012,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954138,6 +1200034,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954216,6 +1200115,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954235,6 +1200137,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954286,6 +1200191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954305,6 +1200213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954383,6 +1200294,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954402,6 +1200316,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954453,6 +1200370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954472,6 +1200392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954550,6 +1200473,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954569,6 +1200495,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954620,6 +1200549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954639,6 +1200571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954717,6 +1200652,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954736,6 +1200674,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954787,6 +1200728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954806,6 +1200750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954884,6 +1200831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954903,6 +1200853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -954954,6 +1200907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -954973,6 +1200929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955051,6 +1201010,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955070,6 +1201032,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955121,6 +1201086,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955140,6 +1201108,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955218,6 +1201189,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955237,6 +1201211,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955288,6 +1201265,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955307,6 +1201287,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955385,6 +1201368,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955404,6 +1201390,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955455,6 +1201444,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955474,6 +1201466,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955552,6 +1201547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955571,6 +1201569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955622,6 +1201623,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955641,6 +1201645,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955719,6 +1201726,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955738,6 +1201748,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955789,6 +1201802,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955808,6 +1201824,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955886,6 +1201905,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955905,6 +1201927,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -955956,6 +1201981,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -955975,6 +1202003,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956053,6 +1202084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956072,6 +1202106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956123,6 +1202160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956142,6 +1202182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956220,6 +1202263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956239,6 +1202285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956290,6 +1202339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956309,6 +1202361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956387,6 +1202442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956406,6 +1202464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956457,6 +1202518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956476,6 +1202540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956554,6 +1202621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956573,6 +1202643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956624,6 +1202697,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956643,6 +1202719,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956721,6 +1202800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956740,6 +1202822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956791,6 +1202876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956810,6 +1202898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956888,6 +1202979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956907,6 +1203001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -956958,6 +1203055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -956977,6 +1203077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957055,6 +1203158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957074,6 +1203180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957125,6 +1203234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957144,6 +1203256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957222,6 +1203337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957241,6 +1203359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957292,6 +1203413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957311,6 +1203435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957389,6 +1203516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957408,6 +1203538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957459,6 +1203592,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957478,6 +1203614,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957556,6 +1203695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957575,6 +1203717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957626,6 +1203771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957645,6 +1203793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957723,6 +1203874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957742,6 +1203896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957793,6 +1203950,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957812,6 +1203972,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957890,6 +1204053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957909,6 +1204075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -957960,6 +1204129,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -957979,6 +1204151,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958057,6 +1204232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958076,6 +1204254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958127,6 +1204308,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958146,6 +1204330,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958224,6 +1204411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958243,6 +1204433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958294,6 +1204487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958313,6 +1204509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958391,6 +1204590,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958410,6 +1204612,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958461,6 +1204666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958480,6 +1204688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958558,6 +1204769,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958577,6 +1204791,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958628,6 +1204845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958647,6 +1204867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958725,6 +1204948,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958744,6 +1204970,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958795,6 +1205024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958814,6 +1205046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958892,6 +1205127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958911,6 +1205149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -958962,6 +1205203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -958981,6 +1205225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959059,6 +1205306,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959078,6 +1205328,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959129,6 +1205382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959148,6 +1205404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959226,6 +1205485,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959245,6 +1205507,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959296,6 +1205561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959315,6 +1205583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959393,6 +1205664,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959412,6 +1205686,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959463,6 +1205740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959482,6 +1205762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959560,6 +1205843,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959579,6 +1205865,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959630,6 +1205919,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959649,6 +1205941,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959727,6 +1206022,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959746,6 +1206044,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959797,6 +1206098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959816,6 +1206120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959894,6 +1206201,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959913,6 +1206223,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -959964,6 +1206277,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -959983,6 +1206299,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960061,6 +1206380,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960080,6 +1206402,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960131,6 +1206456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960150,6 +1206478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960228,6 +1206559,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960247,6 +1206581,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960298,6 +1206635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960317,6 +1206657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960395,6 +1206738,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960414,6 +1206760,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960465,6 +1206814,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960484,6 +1206836,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960562,6 +1206917,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960581,6 +1206939,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960632,6 +1206993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960651,6 +1207015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960729,6 +1207096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960748,6 +1207118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960799,6 +1207172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960818,6 +1207194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960896,6 +1207275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960915,6 +1207297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -960966,6 +1207351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -960985,6 +1207373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961063,6 +1207454,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961082,6 +1207476,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961133,6 +1207530,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961152,6 +1207552,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961230,6 +1207633,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961249,6 +1207655,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961300,6 +1207709,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961319,6 +1207731,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961397,6 +1207812,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961416,6 +1207834,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961467,6 +1207888,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961486,6 +1207910,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961564,6 +1207991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961583,6 +1208013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961634,6 +1208067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961653,6 +1208089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961731,6 +1208170,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961750,6 +1208192,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961801,6 +1208246,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961820,6 +1208268,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961898,6 +1208349,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961917,6 +1208371,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -961968,6 +1208425,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -961987,6 +1208447,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962065,6 +1208528,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962084,6 +1208550,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962135,6 +1208604,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962154,6 +1208626,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962232,6 +1208707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962251,6 +1208729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962302,6 +1208783,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962321,6 +1208805,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962399,6 +1208886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962418,6 +1208908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962469,6 +1208962,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962488,6 +1208984,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962566,6 +1209065,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962585,6 +1209087,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962636,6 +1209141,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962655,6 +1209163,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962733,6 +1209244,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962752,6 +1209266,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962803,6 +1209320,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962822,6 +1209342,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962900,6 +1209423,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962919,6 +1209445,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -962970,6 +1209499,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -962989,6 +1209521,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963067,6 +1209602,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963086,6 +1209624,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963137,6 +1209678,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963156,6 +1209700,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963234,6 +1209781,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963253,6 +1209803,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963304,6 +1209857,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963323,6 +1209879,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963401,6 +1209960,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963420,6 +1209982,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963471,6 +1210036,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963490,6 +1210058,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963568,6 +1210139,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963587,6 +1210161,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963638,6 +1210215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963657,6 +1210237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963735,6 +1210318,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963754,6 +1210340,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963805,6 +1210394,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963824,6 +1210416,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963902,6 +1210497,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963921,6 +1210519,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -963972,6 +1210573,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -963991,6 +1210595,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964069,6 +1210676,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964088,6 +1210698,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964139,6 +1210752,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964158,6 +1210774,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964236,6 +1210855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964255,6 +1210877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964306,6 +1210931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964325,6 +1210953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964403,6 +1211034,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964422,6 +1211056,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964473,6 +1211110,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964492,6 +1211132,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964570,6 +1211213,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964589,6 +1211235,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964640,6 +1211289,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964659,6 +1211311,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964737,6 +1211392,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964756,6 +1211414,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964807,6 +1211468,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964826,6 +1211490,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964904,6 +1211571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964923,6 +1211593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -964974,6 +1211647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -964993,6 +1211669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965071,6 +1211750,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965090,6 +1211772,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965141,6 +1211826,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965160,6 +1211848,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965238,6 +1211929,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965257,6 +1211951,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965308,6 +1212005,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965327,6 +1212027,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965405,6 +1212108,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965424,6 +1212130,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965475,6 +1212184,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965494,6 +1212206,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965572,6 +1212287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965591,6 +1212309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965642,6 +1212363,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965661,6 +1212385,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965739,6 +1212466,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965758,6 +1212488,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965809,6 +1212542,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965828,6 +1212564,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965906,6 +1212645,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965925,6 +1212667,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -965976,6 +1212721,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -965995,6 +1212743,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966073,6 +1212824,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966092,6 +1212846,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966143,6 +1212900,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966162,6 +1212922,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966240,6 +1213003,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966259,6 +1213025,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966310,6 +1213079,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966329,6 +1213101,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966407,6 +1213182,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966426,6 +1213204,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966477,6 +1213258,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966496,6 +1213280,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966574,6 +1213361,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966593,6 +1213383,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966644,6 +1213437,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966663,6 +1213459,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966741,6 +1213540,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966760,6 +1213562,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966811,6 +1213616,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966830,6 +1213638,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966908,6 +1213719,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966927,6 +1213741,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -966978,6 +1213795,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -966997,6 +1213817,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967075,6 +1213898,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967094,6 +1213920,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967145,6 +1213974,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967164,6 +1213996,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967242,6 +1214077,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967261,6 +1214099,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967312,6 +1214153,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967331,6 +1214175,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967409,6 +1214256,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967428,6 +1214278,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967479,6 +1214332,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967498,6 +1214354,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967576,6 +1214435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967595,6 +1214457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967646,6 +1214511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967665,6 +1214533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967743,6 +1214614,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967762,6 +1214636,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967813,6 +1214690,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967832,6 +1214712,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967910,6 +1214793,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967929,6 +1214815,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -967980,6 +1214869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -967999,6 +1214891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968077,6 +1214972,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968096,6 +1214994,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968147,6 +1215048,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968166,6 +1215070,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968244,6 +1215151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968263,6 +1215173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968314,6 +1215227,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968333,6 +1215249,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968411,6 +1215330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968430,6 +1215352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968481,6 +1215406,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968500,6 +1215428,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968578,6 +1215509,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968597,6 +1215531,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968648,6 +1215585,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968667,6 +1215607,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968745,6 +1215688,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968764,6 +1215710,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968815,6 +1215764,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968834,6 +1215786,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968912,6 +1215867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -968931,6 +1215889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -968982,6 +1215943,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969001,6 +1215965,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969079,6 +1216046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969098,6 +1216068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969149,6 +1216122,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969168,6 +1216144,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969246,6 +1216225,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969265,6 +1216247,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969316,6 +1216301,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969335,6 +1216323,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969413,6 +1216404,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969432,6 +1216426,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969483,6 +1216480,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969502,6 +1216502,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969580,6 +1216583,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969599,6 +1216605,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969650,6 +1216659,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969669,6 +1216681,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969747,6 +1216762,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969766,6 +1216784,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969817,6 +1216838,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969836,6 +1216860,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969914,6 +1216941,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -969933,6 +1216963,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -969984,6 +1217017,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970003,6 +1217039,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970081,6 +1217120,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970100,6 +1217142,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970151,6 +1217196,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970170,6 +1217218,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970248,6 +1217299,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970267,6 +1217321,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970318,6 +1217375,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970337,6 +1217397,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970415,6 +1217478,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970434,6 +1217500,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970485,6 +1217554,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970504,6 +1217576,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970582,6 +1217657,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970601,6 +1217679,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970652,6 +1217733,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970671,6 +1217755,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970749,6 +1217836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970768,6 +1217858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970819,6 +1217912,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970838,6 +1217934,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970916,6 +1218015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -970935,6 +1218037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -970986,6 +1218091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971005,6 +1218113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971083,6 +1218194,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971102,6 +1218216,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971153,6 +1218270,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971172,6 +1218292,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971250,6 +1218373,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971269,6 +1218395,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971320,6 +1218449,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971339,6 +1218471,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971417,6 +1218552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971436,6 +1218574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971487,6 +1218628,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971506,6 +1218650,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971584,6 +1218731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971603,6 +1218753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971654,6 +1218807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971673,6 +1218829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971751,6 +1218910,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971770,6 +1218932,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971821,6 +1218986,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971840,6 +1219008,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971918,6 +1219089,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -971937,6 +1219111,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -971988,6 +1219165,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972007,6 +1219187,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972085,6 +1219268,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972104,6 +1219290,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972155,6 +1219344,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972174,6 +1219366,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972252,6 +1219447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972271,6 +1219469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972322,6 +1219523,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972341,6 +1219545,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972419,6 +1219626,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972438,6 +1219648,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972489,6 +1219702,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972508,6 +1219724,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972586,6 +1219805,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972605,6 +1219827,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972656,6 +1219881,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972675,6 +1219903,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972753,6 +1219984,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972772,6 +1220006,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972823,6 +1220060,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972842,6 +1220082,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972920,6 +1220163,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -972939,6 +1220185,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -972990,6 +1220239,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973009,6 +1220261,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973087,6 +1220342,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973106,6 +1220364,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973157,6 +1220418,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973176,6 +1220440,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973254,6 +1220521,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973273,6 +1220543,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973324,6 +1220597,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973343,6 +1220619,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973421,6 +1220700,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973440,6 +1220722,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973491,6 +1220776,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973510,6 +1220798,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973588,6 +1220879,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973607,6 +1220901,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973658,6 +1220955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973677,6 +1220977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973755,6 +1221058,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973774,6 +1221080,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973825,6 +1221134,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973844,6 +1221156,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973922,6 +1221237,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -973941,6 +1221259,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -973992,6 +1221313,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974011,6 +1221335,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974089,6 +1221416,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974108,6 +1221438,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974159,6 +1221492,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974178,6 +1221514,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974256,6 +1221595,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974275,6 +1221617,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974326,6 +1221671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974345,6 +1221693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974423,6 +1221774,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974442,6 +1221796,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974493,6 +1221850,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974512,6 +1221872,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974590,6 +1221953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974609,6 +1221975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974660,6 +1222029,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974679,6 +1222051,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974757,6 +1222132,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974776,6 +1222154,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974827,6 +1222208,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974846,6 +1222230,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974924,6 +1222311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -974943,6 +1222333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -974994,6 +1222387,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975013,6 +1222409,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975091,6 +1222490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975110,6 +1222512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975161,6 +1222566,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975180,6 +1222588,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975258,6 +1222669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975277,6 +1222691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975328,6 +1222745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975347,6 +1222767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975425,6 +1222848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975444,6 +1222870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975495,6 +1222924,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975514,6 +1222946,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975592,6 +1223027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975611,6 +1223049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975662,6 +1223103,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975681,6 +1223125,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975759,6 +1223206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975778,6 +1223228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975829,6 +1223282,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975848,6 +1223304,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975926,6 +1223385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -975945,6 +1223407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -975996,6 +1223461,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976015,6 +1223483,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976093,6 +1223564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976112,6 +1223586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976163,6 +1223640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976182,6 +1223662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976260,6 +1223743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976279,6 +1223765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976330,6 +1223819,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976349,6 +1223841,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976427,6 +1223922,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976446,6 +1223944,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976497,6 +1223998,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976516,6 +1224020,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976594,6 +1224101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976613,6 +1224123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976664,6 +1224177,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976683,6 +1224199,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976761,6 +1224280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976780,6 +1224302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976831,6 +1224356,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976850,6 +1224378,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976928,6 +1224459,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -976947,6 +1224481,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -976998,6 +1224535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977017,6 +1224557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977095,6 +1224638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977114,6 +1224660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977165,6 +1224714,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977184,6 +1224736,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977262,6 +1224817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977281,6 +1224839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977332,6 +1224893,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977351,6 +1224915,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977429,6 +1224996,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977448,6 +1225018,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977499,6 +1225072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977518,6 +1225094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977596,6 +1225175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977615,6 +1225197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977666,6 +1225251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977685,6 +1225273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977763,6 +1225354,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977782,6 +1225376,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977833,6 +1225430,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977852,6 +1225452,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -977930,6 +1225533,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -977949,6 +1225555,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978000,6 +1225609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978019,6 +1225631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978097,6 +1225712,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978116,6 +1225734,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978167,6 +1225788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978186,6 +1225810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978264,6 +1225891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978283,6 +1225913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978334,6 +1225967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978353,6 +1225989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978431,6 +1226070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978450,6 +1226092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978501,6 +1226146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978520,6 +1226168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978598,6 +1226249,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978617,6 +1226271,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978668,6 +1226325,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978687,6 +1226347,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978765,6 +1226428,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978784,6 +1226450,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978835,6 +1226504,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978854,6 +1226526,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -978932,6 +1226607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -978951,6 +1226629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979002,6 +1226683,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979021,6 +1226705,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979099,6 +1226786,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979118,6 +1226808,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979169,6 +1226862,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979188,6 +1226884,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979266,6 +1226965,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979285,6 +1226987,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979336,6 +1227041,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979355,6 +1227063,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979433,6 +1227144,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979452,6 +1227166,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979503,6 +1227220,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979522,6 +1227242,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979600,6 +1227323,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979619,6 +1227345,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979670,6 +1227399,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979689,6 +1227421,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979767,6 +1227502,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979786,6 +1227524,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979837,6 +1227578,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979856,6 +1227600,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -979934,6 +1227681,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -979953,6 +1227703,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980004,6 +1227757,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980023,6 +1227779,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980101,6 +1227860,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980120,6 +1227882,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980171,6 +1227936,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980190,6 +1227958,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980268,6 +1228039,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980287,6 +1228061,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980338,6 +1228115,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980357,6 +1228137,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980435,6 +1228218,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980454,6 +1228240,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980505,6 +1228294,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980524,6 +1228316,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980602,6 +1228397,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980621,6 +1228419,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980672,6 +1228473,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980691,6 +1228495,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980769,6 +1228576,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980788,6 +1228598,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980839,6 +1228652,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980858,6 +1228674,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -980936,6 +1228755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -980955,6 +1228777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981006,6 +1228831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981025,6 +1228853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981103,6 +1228934,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981122,6 +1228956,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981173,6 +1229010,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981192,6 +1229032,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981270,6 +1229113,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981289,6 +1229135,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981340,6 +1229189,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981359,6 +1229211,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981437,6 +1229292,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981456,6 +1229314,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981507,6 +1229368,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981526,6 +1229390,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981604,6 +1229471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981623,6 +1229493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981674,6 +1229547,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981693,6 +1229569,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981771,6 +1229650,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981790,6 +1229672,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981841,6 +1229726,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981860,6 +1229748,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -981938,6 +1229829,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -981957,6 +1229851,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982008,6 +1229905,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982027,6 +1229927,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982105,6 +1230008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982124,6 +1230030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982175,6 +1230084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982194,6 +1230106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982272,6 +1230187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982291,6 +1230209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982342,6 +1230263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982361,6 +1230285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982439,6 +1230366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982458,6 +1230388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982509,6 +1230442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982528,6 +1230464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982606,6 +1230545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982625,6 +1230567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982676,6 +1230621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982695,6 +1230643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982773,6 +1230724,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982792,6 +1230746,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982843,6 +1230800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982862,6 +1230822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -982940,6 +1230903,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -982959,6 +1230925,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983010,6 +1230979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983029,6 +1231001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983107,6 +1231082,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983126,6 +1231104,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983177,6 +1231158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983196,6 +1231180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983274,6 +1231261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983293,6 +1231283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983344,6 +1231337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983363,6 +1231359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983441,6 +1231440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983460,6 +1231462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983511,6 +1231516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983530,6 +1231538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983608,6 +1231619,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983627,6 +1231641,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983678,6 +1231695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983697,6 +1231717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983775,6 +1231798,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983794,6 +1231820,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983845,6 +1231874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983864,6 +1231896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -983942,6 +1231977,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -983961,6 +1231999,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984012,6 +1232053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984031,6 +1232075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984109,6 +1232156,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984128,6 +1232178,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984179,6 +1232232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984198,6 +1232254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984276,6 +1232335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984295,6 +1232357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984346,6 +1232411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984365,6 +1232433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984443,6 +1232514,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984462,6 +1232536,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984513,6 +1232590,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984532,6 +1232612,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984610,6 +1232693,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984629,6 +1232715,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984680,6 +1232769,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984699,6 +1232791,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984777,6 +1232872,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984796,6 +1232894,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984847,6 +1232948,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984866,6 +1232970,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -984944,6 +1233051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -984963,6 +1233073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985014,6 +1233127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985033,6 +1233149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985111,6 +1233230,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985130,6 +1233252,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985181,6 +1233306,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985200,6 +1233328,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985278,6 +1233409,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985297,6 +1233431,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985348,6 +1233485,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985367,6 +1233507,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985445,6 +1233588,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985464,6 +1233610,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985515,6 +1233664,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985534,6 +1233686,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985612,6 +1233767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985631,6 +1233789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985682,6 +1233843,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985701,6 +1233865,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985779,6 +1233946,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985798,6 +1233968,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985849,6 +1234022,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985868,6 +1234044,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -985946,6 +1234125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -985965,6 +1234147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986016,6 +1234201,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986035,6 +1234223,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986113,6 +1234304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986132,6 +1234326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986183,6 +1234380,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986202,6 +1234402,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986280,6 +1234483,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986299,6 +1234505,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986350,6 +1234559,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986369,6 +1234581,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986447,6 +1234662,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986466,6 +1234684,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986517,6 +1234738,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986536,6 +1234760,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986614,6 +1234841,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986633,6 +1234863,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986684,6 +1234917,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986703,6 +1234939,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986781,6 +1235020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986800,6 +1235042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986851,6 +1235096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986870,6 +1235118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -986948,6 +1235199,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -986967,6 +1235221,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987018,6 +1235275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987037,6 +1235297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987115,6 +1235378,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987134,6 +1235400,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987185,6 +1235454,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987204,6 +1235476,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987282,6 +1235557,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987301,6 +1235579,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987352,6 +1235633,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987371,6 +1235655,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987449,6 +1235736,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987468,6 +1235758,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987519,6 +1235812,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987538,6 +1235834,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987616,6 +1235915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987635,6 +1235937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987686,6 +1235991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987705,6 +1236013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987783,6 +1236094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987802,6 +1236116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987853,6 +1236170,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987872,6 +1236192,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -987950,6 +1236273,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -987969,6 +1236295,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988020,6 +1236349,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988039,6 +1236371,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988117,6 +1236452,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988136,6 +1236474,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988187,6 +1236528,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988206,6 +1236550,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988284,6 +1236631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988303,6 +1236653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988354,6 +1236707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988373,6 +1236729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988451,6 +1236810,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988470,6 +1236832,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988521,6 +1236886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988540,6 +1236908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988618,6 +1236989,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988637,6 +1237011,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988688,6 +1237065,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988707,6 +1237087,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988785,6 +1237168,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988804,6 +1237190,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988855,6 +1237244,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988874,6 +1237266,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -988952,6 +1237347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -988971,6 +1237369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989022,6 +1237423,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989041,6 +1237445,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989119,6 +1237526,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989138,6 +1237548,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989189,6 +1237602,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989208,6 +1237624,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989286,6 +1237705,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989305,6 +1237727,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989356,6 +1237781,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989375,6 +1237803,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989453,6 +1237884,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989472,6 +1237906,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989523,6 +1237960,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989542,6 +1237982,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989620,6 +1238063,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989639,6 +1238085,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989690,6 +1238139,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989709,6 +1238161,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989787,6 +1238242,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989806,6 +1238264,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989857,6 +1238318,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989876,6 +1238340,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -989954,6 +1238421,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -989973,6 +1238443,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990024,6 +1238497,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990043,6 +1238519,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990121,6 +1238600,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990140,6 +1238622,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990191,6 +1238676,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990210,6 +1238698,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990288,6 +1238779,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990307,6 +1238801,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990358,6 +1238855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990377,6 +1238877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990455,6 +1238958,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990474,6 +1238980,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990525,6 +1239034,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990544,6 +1239056,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990622,6 +1239137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990641,6 +1239159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990692,6 +1239213,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990711,6 +1239235,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990789,6 +1239316,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990808,6 +1239338,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990859,6 +1239392,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990878,6 +1239414,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -990956,6 +1239495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -990975,6 +1239517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991026,6 +1239571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991045,6 +1239593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991123,6 +1239674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991142,6 +1239696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991193,6 +1239750,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991212,6 +1239772,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991290,6 +1239853,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991309,6 +1239875,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991360,6 +1239929,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991379,6 +1239951,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991457,6 +1240032,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991476,6 +1240054,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991527,6 +1240108,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991546,6 +1240130,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991624,6 +1240211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991643,6 +1240233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991694,6 +1240287,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991713,6 +1240309,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991791,6 +1240390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991810,6 +1240412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991861,6 +1240466,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991880,6 +1240488,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -991958,6 +1240569,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -991977,6 +1240591,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992028,6 +1240645,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992047,6 +1240667,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992125,6 +1240748,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992144,6 +1240770,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992195,6 +1240824,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992214,6 +1240846,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992292,6 +1240927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992311,6 +1240949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992362,6 +1241003,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992381,6 +1241025,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992459,6 +1241106,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992478,6 +1241128,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992529,6 +1241182,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992548,6 +1241204,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992626,6 +1241285,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992645,6 +1241307,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992696,6 +1241361,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992715,6 +1241383,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992793,6 +1241464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992812,6 +1241486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992863,6 +1241540,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992882,6 +1241562,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -992960,6 +1241643,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -992979,6 +1241665,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993030,6 +1241719,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993049,6 +1241741,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993127,6 +1241822,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993146,6 +1241844,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993197,6 +1241898,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993216,6 +1241920,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993294,6 +1242001,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993313,6 +1242023,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993364,6 +1242077,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993383,6 +1242099,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993461,6 +1242180,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993480,6 +1242202,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993531,6 +1242256,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993550,6 +1242278,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993628,6 +1242359,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993647,6 +1242381,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993698,6 +1242435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993717,6 +1242457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993795,6 +1242538,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993814,6 +1242560,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993865,6 +1242614,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993884,6 +1242636,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -993962,6 +1242717,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -993981,6 +1242739,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994032,6 +1242793,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994051,6 +1242815,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994129,6 +1242896,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994148,6 +1242918,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994199,6 +1242972,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994218,6 +1242994,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994296,6 +1243075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994315,6 +1243097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994366,6 +1243151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994385,6 +1243173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994463,6 +1243254,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994482,6 +1243276,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994533,6 +1243330,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994552,6 +1243352,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994630,6 +1243433,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994649,6 +1243455,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994700,6 +1243509,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994719,6 +1243531,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994797,6 +1243612,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994816,6 +1243634,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994867,6 +1243688,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994886,6 +1243710,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -994964,6 +1243791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -994983,6 +1243813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995034,6 +1243867,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995053,6 +1243889,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995131,6 +1243970,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995150,6 +1243992,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995201,6 +1244046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995220,6 +1244068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995298,6 +1244149,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995317,6 +1244171,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995368,6 +1244225,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995387,6 +1244247,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995465,6 +1244328,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995484,6 +1244350,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995535,6 +1244404,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995554,6 +1244426,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995632,6 +1244507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995651,6 +1244529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995702,6 +1244583,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995721,6 +1244605,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995799,6 +1244686,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995818,6 +1244708,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995869,6 +1244762,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995888,6 +1244784,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -995966,6 +1244865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -995985,6 +1244887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996036,6 +1244941,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996055,6 +1244963,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996133,6 +1245044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996152,6 +1245066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996203,6 +1245120,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996222,6 +1245142,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996300,6 +1245223,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996319,6 +1245245,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996370,6 +1245299,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996389,6 +1245321,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996467,6 +1245402,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996486,6 +1245424,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996537,6 +1245478,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996556,6 +1245500,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996634,6 +1245581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996653,6 +1245603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996704,6 +1245657,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996723,6 +1245679,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996801,6 +1245760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996820,6 +1245782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996871,6 +1245836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996890,6 +1245858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -996968,6 +1245939,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -996987,6 +1245961,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997038,6 +1246015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997057,6 +1246037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997135,6 +1246118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997154,6 +1246140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997205,6 +1246194,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997224,6 +1246216,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997302,6 +1246297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997321,6 +1246319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997372,6 +1246373,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997391,6 +1246395,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997469,6 +1246476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997488,6 +1246498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997539,6 +1246552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997558,6 +1246574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997636,6 +1246655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997655,6 +1246677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997706,6 +1246731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997725,6 +1246753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997803,6 +1246834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997822,6 +1246856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997873,6 +1246910,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997892,6 +1246932,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -997970,6 +1247013,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -997989,6 +1247035,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998040,6 +1247089,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998059,6 +1247111,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998137,6 +1247192,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998156,6 +1247214,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998207,6 +1247268,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998226,6 +1247290,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998304,6 +1247371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998323,6 +1247393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998374,6 +1247447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998393,6 +1247469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998471,6 +1247550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998490,6 +1247572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998541,6 +1247626,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998560,6 +1247648,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998638,6 +1247729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998657,6 +1247751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998708,6 +1247805,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998727,6 +1247827,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998805,6 +1247908,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998824,6 +1247930,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998875,6 +1247984,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998894,6 +1248006,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -998972,6 +1248087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -998991,6 +1248109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999042,6 +1248163,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999061,6 +1248185,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999139,6 +1248266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999158,6 +1248288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999209,6 +1248342,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999228,6 +1248364,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999306,6 +1248445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999325,6 +1248467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999376,6 +1248521,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999395,6 +1248543,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999473,6 +1248624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999492,6 +1248646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999543,6 +1248700,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999562,6 +1248722,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999640,6 +1248803,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999659,6 +1248825,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999710,6 +1248879,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999729,6 +1248901,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999807,6 +1248982,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999826,6 +1249004,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999877,6 +1249058,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999896,6 +1249080,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -999974,6 +1249161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -999993,6 +1249183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000044,6 +1249237,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000063,6 +1249259,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000141,6 +1249340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000160,6 +1249362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000211,6 +1249416,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000230,6 +1249438,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000308,6 +1249519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000327,6 +1249541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000378,6 +1249595,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000397,6 +1249617,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000475,6 +1249698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000494,6 +1249720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000545,6 +1249774,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000564,6 +1249796,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000642,6 +1249877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000661,6 +1249899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000712,6 +1249953,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000731,6 +1249975,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000809,6 +1250056,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000828,6 +1250078,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000879,6 +1250132,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000898,6 +1250154,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1000976,6 +1250235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1000995,6 +1250257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001046,6 +1250311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001065,6 +1250333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001143,6 +1250414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001162,6 +1250436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001213,6 +1250490,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001232,6 +1250512,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001310,6 +1250593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001329,6 +1250615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001380,6 +1250669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001399,6 +1250691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001477,6 +1250772,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001496,6 +1250794,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001547,6 +1250848,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001566,6 +1250870,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001644,6 +1250951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001663,6 +1250973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001714,6 +1251027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001733,6 +1251049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001811,6 +1251130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001830,6 +1251152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001881,6 +1251206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001900,6 +1251228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1001978,6 +1251309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1001997,6 +1251331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002048,6 +1251385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002067,6 +1251407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002145,6 +1251488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002164,6 +1251510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002215,6 +1251564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002234,6 +1251586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002312,6 +1251667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002331,6 +1251689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002382,6 +1251743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002401,6 +1251765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002479,6 +1251846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002498,6 +1251868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002549,6 +1251922,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002568,6 +1251944,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002646,6 +1252025,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002665,6 +1252047,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002716,6 +1252101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002735,6 +1252123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002813,6 +1252204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002832,6 +1252226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002883,6 +1252280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002902,6 +1252302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1002980,6 +1252383,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1002999,6 +1252405,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003050,6 +1252459,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003069,6 +1252481,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003147,6 +1252562,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003166,6 +1252584,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003217,6 +1252638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003236,6 +1252660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003314,6 +1252741,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003333,6 +1252763,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003384,6 +1252817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003403,6 +1252839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003481,6 +1252920,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003500,6 +1252942,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003551,6 +1252996,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003570,6 +1253018,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003648,6 +1253099,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003667,6 +1253121,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003718,6 +1253175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003737,6 +1253197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003815,6 +1253278,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003834,6 +1253300,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003885,6 +1253354,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1003904,6 +1253376,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1003982,6 +1253457,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004001,6 +1253479,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004052,6 +1253533,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004071,6 +1253555,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004149,6 +1253636,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004168,6 +1253658,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004219,6 +1253712,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004238,6 +1253734,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004316,6 +1253815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004335,6 +1253837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004386,6 +1253891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004405,6 +1253913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004483,6 +1253994,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004502,6 +1254016,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004553,6 +1254070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004572,6 +1254092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004650,6 +1254173,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004669,6 +1254195,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004720,6 +1254249,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004739,6 +1254271,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004817,6 +1254352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004836,6 +1254374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004887,6 +1254428,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1004906,6 +1254450,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1004984,6 +1254531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005003,6 +1254553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005054,6 +1254607,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005073,6 +1254629,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005151,6 +1254710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005170,6 +1254732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005221,6 +1254786,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005240,6 +1254808,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005318,6 +1254889,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005337,6 +1254911,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005388,6 +1254965,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005407,6 +1254987,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005485,6 +1255068,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005504,6 +1255090,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005555,6 +1255144,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005574,6 +1255166,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005652,6 +1255247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005671,6 +1255269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005722,6 +1255323,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005741,6 +1255345,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005819,6 +1255426,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005838,6 +1255448,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005889,6 +1255502,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1005908,6 +1255524,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1005986,6 +1255605,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006005,6 +1255627,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006056,6 +1255681,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006075,6 +1255703,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006153,6 +1255784,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006172,6 +1255806,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006223,6 +1255860,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006242,6 +1255882,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006320,6 +1255963,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006339,6 +1255985,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006390,6 +1256039,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006409,6 +1256061,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006487,6 +1256142,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006506,6 +1256164,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006557,6 +1256218,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006576,6 +1256240,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006654,6 +1256321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006673,6 +1256343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006724,6 +1256397,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006743,6 +1256419,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006821,6 +1256500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006840,6 +1256522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006891,6 +1256576,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1006910,6 +1256598,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1006988,6 +1256679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007007,6 +1256701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007058,6 +1256755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007077,6 +1256777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007155,6 +1256858,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007174,6 +1256880,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007225,6 +1256934,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007244,6 +1256956,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007322,6 +1257037,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007341,6 +1257059,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007392,6 +1257113,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007411,6 +1257135,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007489,6 +1257216,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007508,6 +1257238,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007559,6 +1257292,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007578,6 +1257314,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007656,6 +1257395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007675,6 +1257417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007726,6 +1257471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007745,6 +1257493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007823,6 +1257574,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007842,6 +1257596,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007893,6 +1257650,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1007912,6 +1257672,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1007990,6 +1257753,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008009,6 +1257775,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008060,6 +1257829,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008079,6 +1257851,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008157,6 +1257932,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008176,6 +1257954,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008227,6 +1258008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008246,6 +1258030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008324,6 +1258111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008343,6 +1258133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008394,6 +1258187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008413,6 +1258209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008491,6 +1258290,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008510,6 +1258312,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008561,6 +1258366,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008580,6 +1258388,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008658,6 +1258469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008677,6 +1258491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008728,6 +1258545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008747,6 +1258567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008825,6 +1258648,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008844,6 +1258670,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008895,6 +1258724,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1008914,6 +1258746,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1008992,6 +1258827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009011,6 +1258849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009062,6 +1258903,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009081,6 +1258925,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009159,6 +1259006,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009178,6 +1259028,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009229,6 +1259082,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009248,6 +1259104,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009326,6 +1259185,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009345,6 +1259207,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009396,6 +1259261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009415,6 +1259283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009493,6 +1259364,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009512,6 +1259386,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009563,6 +1259440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009582,6 +1259462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009660,6 +1259543,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009679,6 +1259565,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009730,6 +1259619,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009749,6 +1259641,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009827,6 +1259722,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009846,6 +1259744,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009897,6 +1259798,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1009916,6 +1259820,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1009994,6 +1259901,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010013,6 +1259923,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010064,6 +1259977,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010083,6 +1259999,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010161,6 +1260080,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010180,6 +1260102,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010231,6 +1260156,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010250,6 +1260178,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010328,6 +1260259,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010347,6 +1260281,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010398,6 +1260335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010417,6 +1260357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010495,6 +1260438,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010514,6 +1260460,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010565,6 +1260514,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010584,6 +1260536,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010662,6 +1260617,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010681,6 +1260639,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010732,6 +1260693,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010751,6 +1260715,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010829,6 +1260796,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010848,6 +1260818,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010899,6 +1260872,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1010918,6 +1260894,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1010996,6 +1260975,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011015,6 +1260997,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011066,6 +1261051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011085,6 +1261073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011163,6 +1261154,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011182,6 +1261176,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011233,6 +1261230,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011252,6 +1261252,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011330,6 +1261333,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011349,6 +1261355,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011400,6 +1261409,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011419,6 +1261431,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011497,6 +1261512,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011516,6 +1261534,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011567,6 +1261588,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011586,6 +1261610,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011664,6 +1261691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011683,6 +1261713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011734,6 +1261767,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011753,6 +1261789,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011831,6 +1261870,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011850,6 +1261892,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011901,6 +1261946,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1011920,6 +1261968,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1011998,6 +1262049,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012017,6 +1262071,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012068,6 +1262125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012087,6 +1262147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012165,6 +1262228,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012184,6 +1262250,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012235,6 +1262304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012254,6 +1262326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012332,6 +1262407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012351,6 +1262429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012402,6 +1262483,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012421,6 +1262505,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012499,6 +1262586,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012518,6 +1262608,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012569,6 +1262662,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012588,6 +1262684,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012666,6 +1262765,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012685,6 +1262787,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012736,6 +1262841,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012755,6 +1262863,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012833,6 +1262944,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012852,6 +1262966,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1012903,6 +1263020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1012922,6 +1263042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013000,6 +1263123,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013019,6 +1263145,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013070,6 +1263199,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013089,6 +1263221,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013167,6 +1263302,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013186,6 +1263324,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013237,6 +1263378,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013256,6 +1263400,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013334,6 +1263481,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013353,6 +1263503,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013404,6 +1263557,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013423,6 +1263579,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013501,6 +1263660,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013520,6 +1263682,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013571,6 +1263736,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013590,6 +1263758,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013668,6 +1263839,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013687,6 +1263861,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013738,6 +1263915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013757,6 +1263937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013835,6 +1264018,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013854,6 +1264040,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1013905,6 +1264094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1013924,6 +1264116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014002,6 +1264197,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014021,6 +1264219,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014072,6 +1264273,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014091,6 +1264295,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014169,6 +1264376,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014188,6 +1264398,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014239,6 +1264452,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014258,6 +1264474,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014336,6 +1264555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014355,6 +1264577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014406,6 +1264631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014425,6 +1264653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014503,6 +1264734,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014522,6 +1264756,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014573,6 +1264810,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014592,6 +1264832,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014670,6 +1264913,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014689,6 +1264935,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014740,6 +1264989,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014759,6 +1265011,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014837,6 +1265092,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014856,6 +1265114,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1014907,6 +1265168,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1014926,6 +1265190,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015004,6 +1265271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015023,6 +1265293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015074,6 +1265347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015093,6 +1265369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015171,6 +1265450,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015190,6 +1265472,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015241,6 +1265526,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015260,6 +1265548,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015338,6 +1265629,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015357,6 +1265651,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015408,6 +1265705,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015427,6 +1265727,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015505,6 +1265808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015524,6 +1265830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015575,6 +1265884,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015594,6 +1265906,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015672,6 +1265987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015691,6 +1266009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015742,6 +1266063,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015761,6 +1266085,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015839,6 +1266166,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015858,6 +1266188,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1015909,6 +1266242,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1015928,6 +1266264,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016006,6 +1266345,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016025,6 +1266367,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016076,6 +1266421,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016095,6 +1266443,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016173,6 +1266524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016192,6 +1266546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016243,6 +1266600,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016262,6 +1266622,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016340,6 +1266703,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016359,6 +1266725,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016410,6 +1266779,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016429,6 +1266801,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016507,6 +1266882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016526,6 +1266904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016577,6 +1266958,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016596,6 +1266980,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016674,6 +1267061,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016693,6 +1267083,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016744,6 +1267137,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016763,6 +1267159,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016841,6 +1267240,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016860,6 +1267262,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1016911,6 +1267316,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1016930,6 +1267338,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017008,6 +1267419,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017027,6 +1267441,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017078,6 +1267495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017097,6 +1267517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017175,6 +1267598,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017194,6 +1267620,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017245,6 +1267674,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017264,6 +1267696,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017342,6 +1267777,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017361,6 +1267799,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017412,6 +1267853,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017431,6 +1267875,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017509,6 +1267956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017528,6 +1267978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017579,6 +1268032,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017598,6 +1268054,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017676,6 +1268135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017695,6 +1268157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017746,6 +1268211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017765,6 +1268233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017843,6 +1268314,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017862,6 +1268336,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1017913,6 +1268390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1017932,6 +1268412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018010,6 +1268493,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018029,6 +1268515,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018080,6 +1268569,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018099,6 +1268591,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018177,6 +1268672,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018196,6 +1268694,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018247,6 +1268748,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018266,6 +1268770,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018344,6 +1268851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018363,6 +1268873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018414,6 +1268927,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018433,6 +1268949,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018511,6 +1269030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018530,6 +1269052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018581,6 +1269106,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018600,6 +1269128,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018678,6 +1269209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018697,6 +1269231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018748,6 +1269285,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018767,6 +1269307,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018845,6 +1269388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018864,6 +1269410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1018915,6 +1269464,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1018934,6 +1269486,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019012,6 +1269567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019031,6 +1269589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019082,6 +1269643,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019101,6 +1269665,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019179,6 +1269746,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019198,6 +1269768,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019249,6 +1269822,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019268,6 +1269844,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019346,6 +1269925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019365,6 +1269947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019416,6 +1270001,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019435,6 +1270023,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019513,6 +1270104,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019532,6 +1270126,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019583,6 +1270180,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019602,6 +1270202,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019680,6 +1270283,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019699,6 +1270305,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019750,6 +1270359,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019769,6 +1270381,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019847,6 +1270462,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019866,6 +1270484,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1019917,6 +1270538,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1019936,6 +1270560,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020014,6 +1270641,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020033,6 +1270663,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020084,6 +1270717,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020103,6 +1270739,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020181,6 +1270820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020200,6 +1270842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020251,6 +1270896,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020270,6 +1270918,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020348,6 +1270999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020367,6 +1271021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020418,6 +1271075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020437,6 +1271097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020515,6 +1271178,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020534,6 +1271200,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020585,6 +1271254,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020604,6 +1271276,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020682,6 +1271357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020701,6 +1271379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020752,6 +1271433,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020771,6 +1271455,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020849,6 +1271536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020868,6 +1271558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1020919,6 +1271612,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1020938,6 +1271634,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021016,6 +1271715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021035,6 +1271737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021086,6 +1271791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021105,6 +1271813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021183,6 +1271894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021202,6 +1271916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021253,6 +1271970,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021272,6 +1271992,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021350,6 +1272073,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021369,6 +1272095,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021420,6 +1272149,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021439,6 +1272171,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021517,6 +1272252,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021536,6 +1272274,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021587,6 +1272328,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021606,6 +1272350,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021684,6 +1272431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021703,6 +1272453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021754,6 +1272507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021773,6 +1272529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021851,6 +1272610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021870,6 +1272632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1021921,6 +1272686,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1021940,6 +1272708,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022018,6 +1272789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022037,6 +1272811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022088,6 +1272865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022107,6 +1272887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022185,6 +1272968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022204,6 +1272990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022255,6 +1273044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022274,6 +1273066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022352,6 +1273147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022371,6 +1273169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022422,6 +1273223,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022441,6 +1273245,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022519,6 +1273326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022538,6 +1273348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022589,6 +1273402,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022608,6 +1273424,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022686,6 +1273505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022705,6 +1273527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022756,6 +1273581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022775,6 +1273603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022853,6 +1273684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022872,6 +1273706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1022923,6 +1273760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1022942,6 +1273782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023020,6 +1273863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023039,6 +1273885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023090,6 +1273939,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023109,6 +1273961,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023187,6 +1274042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023206,6 +1274064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023257,6 +1274118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023276,6 +1274140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023354,6 +1274221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023373,6 +1274243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023424,6 +1274297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023443,6 +1274319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023521,6 +1274400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023540,6 +1274422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023591,6 +1274476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023610,6 +1274498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023688,6 +1274579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023707,6 +1274601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023758,6 +1274655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023777,6 +1274677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023855,6 +1274758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023874,6 +1274780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1023925,6 +1274834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1023944,6 +1274856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024022,6 +1274937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024041,6 +1274959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024092,6 +1275013,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024111,6 +1275035,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024189,6 +1275116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024208,6 +1275138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024259,6 +1275192,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024278,6 +1275214,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024356,6 +1275295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024375,6 +1275317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024426,6 +1275371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024445,6 +1275393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024523,6 +1275474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024542,6 +1275496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024593,6 +1275550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024612,6 +1275572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024690,6 +1275653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024709,6 +1275675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024760,6 +1275729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024779,6 +1275751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024857,6 +1275832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024876,6 +1275854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1024927,6 +1275908,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1024946,6 +1275930,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025024,6 +1276011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025043,6 +1276033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025094,6 +1276087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025113,6 +1276109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025191,6 +1276190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025210,6 +1276212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025261,6 +1276266,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025280,6 +1276288,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025358,6 +1276369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025377,6 +1276391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025428,6 +1276445,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025447,6 +1276467,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025525,6 +1276548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025544,6 +1276570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025595,6 +1276624,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025614,6 +1276646,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025692,6 +1276727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025711,6 +1276749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025762,6 +1276803,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025781,6 +1276825,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025859,6 +1276906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025878,6 +1276928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1025929,6 +1276982,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1025948,6 +1277004,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026026,6 +1277085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026045,6 +1277107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026096,6 +1277161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026115,6 +1277183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026193,6 +1277264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026212,6 +1277286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026263,6 +1277340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026282,6 +1277362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026360,6 +1277443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026379,6 +1277465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026430,6 +1277519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026449,6 +1277541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026527,6 +1277622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026546,6 +1277644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026597,6 +1277698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026616,6 +1277720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026694,6 +1277801,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026713,6 +1277823,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026764,6 +1277877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026783,6 +1277899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026861,6 +1277980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026880,6 +1278002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1026931,6 +1278056,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1026950,6 +1278078,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027028,6 +1278159,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027047,6 +1278181,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027098,6 +1278235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027117,6 +1278257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027195,6 +1278338,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027214,6 +1278360,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027265,6 +1278414,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027284,6 +1278436,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027362,6 +1278517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027381,6 +1278539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027432,6 +1278593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027451,6 +1278615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027529,6 +1278696,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027548,6 +1278718,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027599,6 +1278772,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027618,6 +1278794,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027696,6 +1278875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027715,6 +1278897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027766,6 +1278951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027785,6 +1278973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027863,6 +1279054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027882,6 +1279076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1027933,6 +1279130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1027952,6 +1279152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028030,6 +1279233,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028049,6 +1279255,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028100,6 +1279309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028119,6 +1279331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028197,6 +1279412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028216,6 +1279434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028267,6 +1279488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028286,6 +1279510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028364,6 +1279591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028383,6 +1279613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028434,6 +1279667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028453,6 +1279689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028531,6 +1279770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028550,6 +1279792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028601,6 +1279846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028620,6 +1279868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028698,6 +1279949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028717,6 +1279971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028768,6 +1280025,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028787,6 +1280047,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028865,6 +1280128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028884,6 +1280150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1028935,6 +1280204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1028954,6 +1280226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029032,6 +1280307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029051,6 +1280329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029102,6 +1280383,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029121,6 +1280405,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029199,6 +1280486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029218,6 +1280508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029269,6 +1280562,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029288,6 +1280584,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029366,6 +1280665,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029385,6 +1280687,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029436,6 +1280741,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029455,6 +1280763,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029533,6 +1280844,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029552,6 +1280866,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029603,6 +1280920,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029622,6 +1280942,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029700,6 +1281023,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029719,6 +1281045,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029770,6 +1281099,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029789,6 +1281121,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029867,6 +1281202,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029886,6 +1281224,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1029937,6 +1281278,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1029956,6 +1281300,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030034,6 +1281381,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030053,6 +1281403,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030104,6 +1281457,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030123,6 +1281479,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030201,6 +1281560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030220,6 +1281582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030271,6 +1281636,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030290,6 +1281658,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030368,6 +1281739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030387,6 +1281761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030438,6 +1281815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030457,6 +1281837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030535,6 +1281918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030554,6 +1281940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030605,6 +1281994,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030624,6 +1282016,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030702,6 +1282097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030721,6 +1282119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030772,6 +1282173,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030791,6 +1282195,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030869,6 +1282276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030888,6 +1282298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1030939,6 +1282352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1030958,6 +1282374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1031036,6 +1282455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1031055,6 +1282477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1031106,6 +1282531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1031125,6 +1282553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1031203,6 +1282634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1031222,6 +1282656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1031273,6 +1282710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1031292,6 +1282732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1033861,6 +1285304,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1382703866 GameObject: m_ObjectHideFlags: 0 @@ -1035068,6 +1286524,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1387038094} m_CullTransparentMesh: 0 +--- !u!1 &1387050643 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1387050644} + - component: {fileID: 1387050646} + - component: {fileID: 1387050645} + m_Layer: 0 + m_Name: axis_y4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1387050644 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1387050643} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 193992667} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 52, y: 319.6} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1387050645 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1387050643} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 16000 +--- !u!222 &1387050646 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1387050643} + m_CullTransparentMesh: 0 --- !u!1 &1387454679 GameObject: m_ObjectHideFlags: 0 @@ -1036427,6 +1287961,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1036460,6 +1288000,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1036498,6 +1288039,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1036741,6 +1288283,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1036934,6 +1288477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1036953,6 +1288499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1037003,6 +1288552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1037022,6 +1288574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1037111,6 +1288666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1037130,6 +1288688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1037181,6 +1288742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1037200,6 +1288764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1039544,6 +1291111,84 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1410467495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1410467496} + - component: {fileID: 1410467498} + - component: {fileID: 1410467497} + m_Layer: 0 + m_Name: axis_y10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1410467496 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1410467495} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1889259906} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 70} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1410467497 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1410467495} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1410467498 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1410467495} + m_CullTransparentMesh: 0 --- !u!1 &1410979498 GameObject: m_ObjectHideFlags: 1 @@ -1040815,7 +1292460,7 @@ RectTransform: - {fileID: 383098850} - {fileID: 267527850} m_Father: {fileID: 472702066} - m_RootOrder: 22 + m_RootOrder: 23 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -1042037,6 +1293682,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1422716067} m_CullTransparentMesh: 0 +--- !u!1 &1422895924 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1422895925} + - component: {fileID: 1422895927} + - component: {fileID: 1422895926} + m_Layer: 0 + m_Name: painter_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1422895925 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422895924} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1422895926 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422895924} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1422895927 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1422895924} + m_CullTransparentMesh: 0 --- !u!1 &1422950989 GameObject: m_ObjectHideFlags: 0 @@ -1043230,6 +1294939,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1430981909 GameObject: m_ObjectHideFlags: 0 @@ -1043341,6 +1295063,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1431013796} m_CullTransparentMesh: 0 +--- !u!1 &1431332239 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1431332240} + - component: {fileID: 1431332242} + - component: {fileID: 1431332241} + m_Layer: 0 + m_Name: axis_y12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1431332240 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1431332239} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2053519850} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 170.79999} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1431332241 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1431332239} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1431332242 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1431332239} + m_CullTransparentMesh: 0 --- !u!1 &1431521898 GameObject: m_ObjectHideFlags: 1 @@ -1044515,6 +1296315,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1437194505 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1437194506} + - component: {fileID: 1437194508} + - component: {fileID: 1437194507} + m_Layer: 0 + m_Name: title_sub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1437194506 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437194505} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 456022028} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -24} + m_SizeDelta: {x: 864, y: 22} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1437194507 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437194505} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1437194508 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437194505} + m_CullTransparentMesh: 0 --- !u!1 &1437364050 GameObject: m_ObjectHideFlags: 0 @@ -1047871,6 +1299749,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1456444897 GameObject: m_ObjectHideFlags: 0 @@ -1048233,6 +1300124,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1457814930} m_CullTransparentMesh: 0 +--- !u!1 &1457983126 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1457983127} + - component: {fileID: 1457983129} + - component: {fileID: 1457983128} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1457983127 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1457983126} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1304829139} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1457983128 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1457983126} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1457983129 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1457983126} + m_CullTransparentMesh: 0 --- !u!1 &1457984008 GameObject: m_ObjectHideFlags: 1 @@ -1049949,6 +1301918,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1049982,6 +1301957,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1050020,6 +1301996,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1050785,6 +1302762,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1050978,6 +1302956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1050997,6 +1302978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051047,6 +1303031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051066,6 +1303053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 4278190080 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051155,6 +1303145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051174,6 +1303167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051225,6 +1303221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051244,6 +1303243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051324,6 +1303326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051343,6 +1303348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051394,6 +1303402,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051413,6 +1303424,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051493,6 +1303507,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051512,6 +1303529,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051563,6 +1303583,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051582,6 +1303605,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051662,6 +1303688,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051681,6 +1303710,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051732,6 +1303764,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051751,6 +1303786,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051831,6 +1303869,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051850,6 +1303891,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1051901,6 +1303945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1051920,6 +1303967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052000,6 +1304050,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052019,6 +1304072,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052070,6 +1304126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052089,6 +1304148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052169,6 +1304231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052188,6 +1304253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052239,6 +1304307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052258,6 +1304329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052338,6 +1304412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052357,6 +1304434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052408,6 +1304488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052427,6 +1304510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052507,6 +1304593,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052526,6 +1304615,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052577,6 +1304669,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052596,6 +1304691,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052676,6 +1304774,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052695,6 +1304796,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052746,6 +1304850,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052765,6 +1304872,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052845,6 +1304955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052864,6 +1304977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1052915,6 +1305031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1052934,6 +1305053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053013,6 +1305135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053032,6 +1305157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053083,6 +1305211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053102,6 +1305233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053181,6 +1305315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053200,6 +1305337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053251,6 +1305391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053270,6 +1305413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053349,6 +1305495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053368,6 +1305517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053419,6 +1305571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053438,6 +1305593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053517,6 +1305675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053536,6 +1305697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053587,6 +1305751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053606,6 +1305773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053685,6 +1305855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053704,6 +1305877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053755,6 +1305931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053774,6 +1305953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053853,6 +1306035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053872,6 +1306057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1053923,6 +1306111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1053942,6 +1306133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054021,6 +1306215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054040,6 +1306237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054091,6 +1306291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054110,6 +1306313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054189,6 +1306395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054208,6 +1306417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054259,6 +1306471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054278,6 +1306493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054357,6 +1306575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054376,6 +1306597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054427,6 +1306651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054446,6 +1306673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054525,6 +1306755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054544,6 +1306777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054595,6 +1306831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054614,6 +1306853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054693,6 +1306935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054712,6 +1306957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054763,6 +1307011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054782,6 +1307033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054861,6 +1307115,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054880,6 +1307137,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1054931,6 +1307191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1054950,6 +1307213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055029,6 +1307295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055048,6 +1307317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055099,6 +1307371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055118,6 +1307393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055197,6 +1307475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055216,6 +1307497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055267,6 +1307551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055286,6 +1307573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055365,6 +1307655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055384,6 +1307677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055435,6 +1307731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055454,6 +1307753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055533,6 +1307835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055552,6 +1307857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055603,6 +1307911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055622,6 +1307933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055701,6 +1308015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055720,6 +1308037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055771,6 +1308091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055790,6 +1308113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055869,6 +1308195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055888,6 +1308217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1055939,6 +1308271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1055958,6 +1308293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056037,6 +1308375,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056056,6 +1308397,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056107,6 +1308451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056126,6 +1308473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056205,6 +1308555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056224,6 +1308577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056275,6 +1308631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056294,6 +1308653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056373,6 +1308735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056392,6 +1308757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056443,6 +1308811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056462,6 +1308833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056541,6 +1308915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056560,6 +1308937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056611,6 +1308991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056630,6 +1309013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056709,6 +1309095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056728,6 +1309117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056779,6 +1309171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056798,6 +1309193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056877,6 +1309275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056896,6 +1309297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1056947,6 +1309351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1056966,6 +1309373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057045,6 +1309455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057064,6 +1309477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057115,6 +1309531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057134,6 +1309553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057213,6 +1309635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057232,6 +1309657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057283,6 +1309711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057302,6 +1309733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057381,6 +1309815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057400,6 +1309837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057451,6 +1309891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057470,6 +1309913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057549,6 +1309995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057568,6 +1310017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057619,6 +1310071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057638,6 +1310093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057717,6 +1310175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057736,6 +1310197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057787,6 +1310251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057806,6 +1310273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057885,6 +1310355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057904,6 +1310377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1057955,6 +1310431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1057974,6 +1310453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058053,6 +1310535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058072,6 +1310557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058123,6 +1310611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058142,6 +1310633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058221,6 +1310715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058240,6 +1310737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058291,6 +1310791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058310,6 +1310813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058389,6 +1310895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058408,6 +1310917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058459,6 +1310971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058478,6 +1310993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058557,6 +1311075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058576,6 +1311097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058627,6 +1311151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058646,6 +1311173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058725,6 +1311255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058744,6 +1311277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058795,6 +1311331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058814,6 +1311353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058893,6 +1311435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058912,6 +1311457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1058963,6 +1311511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1058982,6 +1311533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059061,6 +1311615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059080,6 +1311637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059131,6 +1311691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059150,6 +1311713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059229,6 +1311795,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059248,6 +1311817,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059299,6 +1311871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059318,6 +1311893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059397,6 +1311975,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059416,6 +1311997,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059467,6 +1312051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059486,6 +1312073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059565,6 +1312155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059584,6 +1312177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059635,6 +1312231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059654,6 +1312253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059733,6 +1312335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059752,6 +1312357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059803,6 +1312411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059822,6 +1312433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059901,6 +1312515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059920,6 +1312537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1059971,6 +1312591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1059990,6 +1312613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060069,6 +1312695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060088,6 +1312717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060139,6 +1312771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060158,6 +1312793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060237,6 +1312875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060256,6 +1312897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060307,6 +1312951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060326,6 +1312973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060405,6 +1313055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060424,6 +1313077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060475,6 +1313131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060494,6 +1313153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060573,6 +1313235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060592,6 +1313257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060643,6 +1313311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060662,6 +1313333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060741,6 +1313415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060760,6 +1313437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060811,6 +1313491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060830,6 +1313513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060909,6 +1313595,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060928,6 +1313617,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1060979,6 +1313671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1060998,6 +1313693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061077,6 +1313775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061096,6 +1313797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061147,6 +1313851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061166,6 +1313873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061245,6 +1313955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061264,6 +1313977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061315,6 +1314031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061334,6 +1314053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061413,6 +1314135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061432,6 +1314157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061483,6 +1314211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061502,6 +1314233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061581,6 +1314315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061600,6 +1314337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061651,6 +1314391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061670,6 +1314413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061749,6 +1314495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061768,6 +1314517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061819,6 +1314571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061838,6 +1314593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061917,6 +1314675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1061936,6 +1314697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1061987,6 +1314751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062006,6 +1314773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062085,6 +1314855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062104,6 +1314877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062155,6 +1314931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062174,6 +1314953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062253,6 +1315035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062272,6 +1315057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062323,6 +1315111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062342,6 +1315133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062421,6 +1315215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062440,6 +1315237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062491,6 +1315291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062510,6 +1315313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062589,6 +1315395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062608,6 +1315417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062659,6 +1315471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062678,6 +1315493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062757,6 +1315575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062776,6 +1315597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062827,6 +1315651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062846,6 +1315673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062925,6 +1315755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1062944,6 +1315777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1062995,6 +1315831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063014,6 +1315853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063093,6 +1315935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063112,6 +1315957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063163,6 +1316011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063182,6 +1316033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063261,6 +1316115,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063280,6 +1316137,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063331,6 +1316191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063350,6 +1316213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063429,6 +1316295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063448,6 +1316317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063499,6 +1316371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063518,6 +1316393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063597,6 +1316475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063616,6 +1316497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063667,6 +1316551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063686,6 +1316573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063765,6 +1316655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063784,6 +1316677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063835,6 +1316731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063854,6 +1316753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1063933,6 +1316835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1063952,6 +1316857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064003,6 +1316911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064022,6 +1316933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064101,6 +1317015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064120,6 +1317037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064171,6 +1317091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064190,6 +1317113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064269,6 +1317195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064288,6 +1317217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064339,6 +1317271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064358,6 +1317293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064437,6 +1317375,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064456,6 +1317397,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064507,6 +1317451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064526,6 +1317473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064605,6 +1317555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064624,6 +1317577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064675,6 +1317631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064694,6 +1317653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064773,6 +1317735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064792,6 +1317757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064843,6 +1317811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064862,6 +1317833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1064941,6 +1317915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1064960,6 +1317937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065011,6 +1317991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065030,6 +1318013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065109,6 +1318095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065128,6 +1318117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065179,6 +1318171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065198,6 +1318193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065277,6 +1318275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065296,6 +1318297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065347,6 +1318351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065366,6 +1318373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065445,6 +1318455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065464,6 +1318477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065515,6 +1318531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065534,6 +1318553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065613,6 +1318635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065632,6 +1318657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065683,6 +1318711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065702,6 +1318733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065781,6 +1318815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065800,6 +1318837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065851,6 +1318891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065870,6 +1318913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1065949,6 +1318995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1065968,6 +1319017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066019,6 +1319071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066038,6 +1319093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066117,6 +1319175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066136,6 +1319197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066187,6 +1319251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066206,6 +1319273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066285,6 +1319355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066304,6 +1319377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066355,6 +1319431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066374,6 +1319453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066453,6 +1319535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066472,6 +1319557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066523,6 +1319611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066542,6 +1319633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066621,6 +1319715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066640,6 +1319737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066691,6 +1319791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066710,6 +1319813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066789,6 +1319895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066808,6 +1319917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066859,6 +1319971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066878,6 +1319993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1066957,6 +1320075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1066976,6 +1320097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067027,6 +1320151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067046,6 +1320173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067125,6 +1320255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067144,6 +1320277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067195,6 +1320331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067214,6 +1320353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067293,6 +1320435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067312,6 +1320457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067363,6 +1320511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067382,6 +1320533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067461,6 +1320615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067480,6 +1320637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067531,6 +1320691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067550,6 +1320713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067629,6 +1320795,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067648,6 +1320817,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067699,6 +1320871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067718,6 +1320893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067797,6 +1320975,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067816,6 +1320997,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067867,6 +1321051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067886,6 +1321073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1067965,6 +1321155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1067984,6 +1321177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068035,6 +1321231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068054,6 +1321253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068133,6 +1321335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068152,6 +1321357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068203,6 +1321411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068222,6 +1321433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068301,6 +1321515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068320,6 +1321537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068371,6 +1321591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068390,6 +1321613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068469,6 +1321695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068488,6 +1321717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068539,6 +1321771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068558,6 +1321793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068637,6 +1321875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068656,6 +1321897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068707,6 +1321951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068726,6 +1321973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068805,6 +1322055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068824,6 +1322077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068875,6 +1322131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068894,6 +1322153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1068973,6 +1322235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1068992,6 +1322257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069043,6 +1322311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069062,6 +1322333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069141,6 +1322415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069160,6 +1322437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069211,6 +1322491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069230,6 +1322513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069309,6 +1322595,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069328,6 +1322617,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069379,6 +1322671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069398,6 +1322693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069477,6 +1322775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069496,6 +1322797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069547,6 +1322851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069566,6 +1322873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069645,6 +1322955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069664,6 +1322977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069715,6 +1323031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069734,6 +1323053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069813,6 +1323135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069832,6 +1323157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069883,6 +1323211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1069902,6 +1323233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1069981,6 +1323315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070000,6 +1323337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070051,6 +1323391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070070,6 +1323413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070149,6 +1323495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070168,6 +1323517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070219,6 +1323571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070238,6 +1323593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070317,6 +1323675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070336,6 +1323697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070387,6 +1323751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070406,6 +1323773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070485,6 +1323855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070504,6 +1323877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070555,6 +1323931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070574,6 +1323953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070653,6 +1324035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070672,6 +1324057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070723,6 +1324111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070742,6 +1324133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070821,6 +1324215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070840,6 +1324237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070891,6 +1324291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1070910,6 +1324313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1070989,6 +1324395,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071008,6 +1324417,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071059,6 +1324471,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071078,6 +1324493,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071157,6 +1324575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071176,6 +1324597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071227,6 +1324651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071246,6 +1324673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071325,6 +1324755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071344,6 +1324777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071395,6 +1324831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071414,6 +1324853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071493,6 +1324935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071512,6 +1324957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071563,6 +1325011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071582,6 +1325033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071661,6 +1325115,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071680,6 +1325137,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071731,6 +1325191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071750,6 +1325213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071829,6 +1325295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071848,6 +1325317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071899,6 +1325371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1071918,6 +1325393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1071997,6 +1325475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072016,6 +1325497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072067,6 +1325551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072086,6 +1325573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072165,6 +1325655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072184,6 +1325677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072235,6 +1325731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072254,6 +1325753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072333,6 +1325835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072352,6 +1325857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072403,6 +1325911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072422,6 +1325933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072501,6 +1326015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072520,6 +1326037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072571,6 +1326091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072590,6 +1326113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072669,6 +1326195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072688,6 +1326217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072739,6 +1326271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072758,6 +1326293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072837,6 +1326375,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072856,6 +1326397,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1072907,6 +1326451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1072926,6 +1326473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073005,6 +1326555,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073024,6 +1326577,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073075,6 +1326631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073094,6 +1326653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073173,6 +1326735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073192,6 +1326757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073243,6 +1326811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073262,6 +1326833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073341,6 +1326915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073360,6 +1326937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073411,6 +1326991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073430,6 +1327013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073509,6 +1327095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073528,6 +1327117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073579,6 +1327171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073598,6 +1327193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073677,6 +1327275,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073696,6 +1327297,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073747,6 +1327351,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073766,6 +1327373,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073845,6 +1327455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073864,6 +1327477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1073915,6 +1327531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1073934,6 +1327553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074013,6 +1327635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074032,6 +1327657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074083,6 +1327711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074102,6 +1327733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074181,6 +1327815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074200,6 +1327837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074251,6 +1327891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074270,6 +1327913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074349,6 +1327995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074368,6 +1328017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074419,6 +1328071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074438,6 +1328093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074517,6 +1328175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074536,6 +1328197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074587,6 +1328251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074606,6 +1328273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074685,6 +1328355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074704,6 +1328377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074755,6 +1328431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074774,6 +1328453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074853,6 +1328535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074872,6 +1328557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1074923,6 +1328611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1074942,6 +1328633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075021,6 +1328715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075040,6 +1328737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075091,6 +1328791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075110,6 +1328813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075189,6 +1328895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075208,6 +1328917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075259,6 +1328971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075278,6 +1328993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075357,6 +1329075,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075376,6 +1329097,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075427,6 +1329151,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075446,6 +1329173,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075525,6 +1329255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075544,6 +1329277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075595,6 +1329331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075614,6 +1329353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075693,6 +1329435,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075712,6 +1329457,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075763,6 +1329511,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075782,6 +1329533,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075861,6 +1329615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075880,6 +1329637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1075931,6 +1329691,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1075950,6 +1329713,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076029,6 +1329795,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076048,6 +1329817,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076099,6 +1329871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076118,6 +1329893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076197,6 +1329975,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076216,6 +1329997,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076267,6 +1330051,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076286,6 +1330073,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076365,6 +1330155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076384,6 +1330177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076435,6 +1330231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076454,6 +1330253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076533,6 +1330335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076552,6 +1330357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076603,6 +1330411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076622,6 +1330433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076701,6 +1330515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076720,6 +1330537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076771,6 +1330591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076790,6 +1330613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076869,6 +1330695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076888,6 +1330717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1076939,6 +1330771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1076958,6 +1330793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077037,6 +1330875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077056,6 +1330897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077107,6 +1330951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077126,6 +1330973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077205,6 +1331055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077224,6 +1331077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077275,6 +1331131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077294,6 +1331153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077373,6 +1331235,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077392,6 +1331257,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077443,6 +1331311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077462,6 +1331333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077541,6 +1331415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077560,6 +1331437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077611,6 +1331491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077630,6 +1331513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077709,6 +1331595,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077728,6 +1331617,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077779,6 +1331671,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077798,6 +1331693,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077877,6 +1331775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077896,6 +1331797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1077947,6 +1331851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1077966,6 +1331873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078045,6 +1331955,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078064,6 +1331977,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078115,6 +1332031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078134,6 +1332053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078213,6 +1332135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078232,6 +1332157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078283,6 +1332211,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078302,6 +1332233,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078381,6 +1332315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078400,6 +1332337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078451,6 +1332391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078470,6 +1332413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078549,6 +1332495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078568,6 +1332517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078619,6 +1332571,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078638,6 +1332593,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078717,6 +1332675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078736,6 +1332697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078787,6 +1332751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078806,6 +1332773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078885,6 +1332855,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078904,6 +1332877,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1078955,6 +1332931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1078974,6 +1332953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1079053,6 +1333035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1079072,6 +1333057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1079123,6 +1333111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1079142,6 +1333133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1079221,6 +1333215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1079240,6 +1333237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1079291,6 +1333291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1079310,6 +1333313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1079456,7 +1333462,7 @@ RectTransform: - {fileID: 891479018} - {fileID: 940213160} m_Father: {fileID: 1693045525} - m_RootOrder: 22 + m_RootOrder: 23 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -1079541,6 +1333547,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1467694977} m_CullTransparentMesh: 0 +--- !u!1 &1468151240 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1468151241} + - component: {fileID: 1468151243} + - component: {fileID: 1468151242} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1468151241 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1468151240} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 193992667} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 52, y: 132.4} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1468151242 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1468151240} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 4000 +--- !u!222 &1468151243 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1468151240} + m_CullTransparentMesh: 0 --- !u!1 &1470213873 GameObject: m_ObjectHideFlags: 0 @@ -1079883,6 +1333967,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1470742751 GameObject: m_ObjectHideFlags: 0 @@ -1080255,6 +1334352,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1471617307} m_CullTransparentMesh: 0 +--- !u!1 &1471973887 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1471973888} + - component: {fileID: 1471973890} + - component: {fileID: 1471973889} + m_Layer: 0 + m_Name: axis_y1_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1471973888 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471973887} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 356856250} + m_Father: {fileID: 253333212} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1471973889 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471973887} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1471973890 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471973887} + m_CullTransparentMesh: 0 --- !u!1 &1472594553 GameObject: m_ObjectHideFlags: 0 @@ -1080621,6 +1334793,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1080654,6 +1334832,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1080692,6 +1334871,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1080919,6 +1335099,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 0 @@ -1081112,6 +1335293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081131,6 +1335315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081181,6 +1335368,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081200,6 +1335390,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081289,6 +1335482,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081308,6 +1335504,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081359,6 +1335558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081378,6 +1335580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081457,6 +1335662,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081476,6 +1335684,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081527,6 +1335738,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081546,6 +1335760,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081625,6 +1335842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081644,6 +1335864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081695,6 +1335918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081714,6 +1335940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081793,6 +1336022,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081812,6 +1336044,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081863,6 +1336098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081882,6 +1336120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1081961,6 +1336202,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1081980,6 +1336224,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1082031,6 +1336278,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1082050,6 +1336300,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1082129,6 +1336382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1082148,6 +1336404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1082199,6 +1336458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1082218,6 +1336480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1082297,6 +1336562,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1082316,6 +1336584,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1082367,6 +1336638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1082386,6 +1336660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1083288,6 +1337565,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1476587551} m_CullTransparentMesh: 0 +--- !u!1 &1476740196 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1476740197} + m_Layer: 0 + m_Name: datazoom1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1476740197 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476740196} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1878810549} + - {fileID: 237373727} + m_Father: {fileID: 1033575168} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1476878387 GameObject: m_ObjectHideFlags: 0 @@ -1084392,6 +1338706,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Log Axis @@ -1084425,6 +1338745,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1084463,6 +1338784,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1085200,6 +1339522,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1085393,6 +1339716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1085412,6 +1339738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1085462,6 +1339791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1085481,6 +1339813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1085570,6 +1339905,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1085589,6 +1339927,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1085640,6 +1339981,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1085659,6 +1340003,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1085737,6 +1340084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1085756,6 +1340106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1085807,6 +1340160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1085826,6 +1340182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1085904,6 +1340263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1085923,6 +1340285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1085974,6 +1340339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1085993,6 +1340361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086071,6 +1340442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086090,6 +1340464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086141,6 +1340518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086160,6 +1340540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086238,6 +1340621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086257,6 +1340643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086308,6 +1340697,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086327,6 +1340719,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086405,6 +1340800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086424,6 +1340822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086475,6 +1340876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086494,6 +1340898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086572,6 +1340979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086591,6 +1341001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086642,6 +1341055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086661,6 +1341077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086739,6 +1341158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086758,6 +1341180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086809,6 +1341234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086828,6 +1341256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086906,6 +1341337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086925,6 +1341359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1086976,6 +1341413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1086995,6 +1341435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087092,6 +1341535,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1087285,6 +1341729,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087304,6 +1341751,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087354,6 +1341804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087373,6 +1341826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087462,6 +1341918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087481,6 +1341940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087532,6 +1341994,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087551,6 +1342016,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087629,6 +1342097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087648,6 +1342119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087699,6 +1342173,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087718,6 +1342195,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087796,6 +1342276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087815,6 +1342298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087866,6 +1342352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087885,6 +1342374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1087963,6 +1342455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1087982,6 +1342477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088033,6 +1342531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088052,6 +1342553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088130,6 +1342634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088149,6 +1342656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088200,6 +1342710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088219,6 +1342732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088297,6 +1342813,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088316,6 +1342835,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088367,6 +1342889,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088386,6 +1342911,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088464,6 +1342992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088483,6 +1343014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088534,6 +1343068,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088553,6 +1343090,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088631,6 +1343171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088650,6 +1343193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088701,6 +1343247,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088720,6 +1343269,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088798,6 +1343350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088817,6 +1343372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088868,6 +1343426,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1088887,6 +1343448,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1088984,6 +1343548,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1089177,6 +1343742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089196,6 +1343764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089246,6 +1343817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089265,6 +1343839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089354,6 +1343931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089373,6 +1343953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089424,6 +1344007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089443,6 +1344029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089521,6 +1344110,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089540,6 +1344132,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089591,6 +1344186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089610,6 +1344208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089688,6 +1344289,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089707,6 +1344311,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089758,6 +1344365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089777,6 +1344387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089855,6 +1344468,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089874,6 +1344490,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1089925,6 +1344544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1089944,6 +1344566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090022,6 +1344647,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090041,6 +1344669,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090092,6 +1344723,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090111,6 +1344745,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090189,6 +1344826,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090208,6 +1344848,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090259,6 +1344902,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090278,6 +1344924,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090356,6 +1345005,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090375,6 +1345027,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090426,6 +1345081,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090445,6 +1345103,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090523,6 +1345184,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090542,6 +1345206,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090593,6 +1345260,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090612,6 +1345282,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090690,6 +1345363,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090709,6 +1345385,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1090760,6 +1345439,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1090779,6 +1345461,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1091296,6 +1345981,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1484116045 GameObject: m_ObjectHideFlags: 1 @@ -1091607,6 +1346305,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &1485266670 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1093901,6 +1348711,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1498259610} m_CullTransparentMesh: 0 +--- !u!1 &1498267857 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1498267858} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1498267858 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1498267857} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 116667042} + - {fileID: 561183753} + - {fileID: 1359351996} + - {fileID: 1967725339} + - {fileID: 224146741} + - {fileID: 430083102} + m_Father: {fileID: 651764999} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1498473971 GameObject: m_ObjectHideFlags: 0 @@ -1094184,6 +1349035,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1094217,6 +1349074,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1094255,6 +1349113,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1094482,6 +1349341,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1094675,6 +1349535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1094694,6 +1349557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1094744,6 +1349610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1094763,6 +1349632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1094852,6 +1349724,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1094871,6 +1349746,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1094922,6 +1349800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1094941,6 +1349822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095019,6 +1349903,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095038,6 +1349925,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095089,6 +1349979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095108,6 +1350001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095186,6 +1350082,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095205,6 +1350104,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095256,6 +1350158,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095275,6 +1350180,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095353,6 +1350261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095372,6 +1350283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095423,6 +1350337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095442,6 +1350359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095520,6 +1350440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095539,6 +1350462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095590,6 +1350516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095609,6 +1350538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095687,6 +1350619,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095706,6 +1350641,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095757,6 +1350695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095776,6 +1350717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095854,6 +1350798,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095873,6 +1350820,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1095924,6 +1350874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1095943,6 +1350896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1096489,6 +1351445,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1096522,6 +1351484,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1096560,6 +1351523,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1097293,6 +1352257,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1097486,6 +1352451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1097505,6 +1352473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1097555,6 +1352526,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1097574,6 +1352548,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1097663,6 +1352640,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1097682,6 +1352662,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1097733,6 +1352716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1097752,6 +1352738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1097833,6 +1352822,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1097852,6 +1352844,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1097903,6 +1352898,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1097922,6 +1352920,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098003,6 +1353004,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098022,6 +1353026,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098073,6 +1353080,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098092,6 +1353102,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098173,6 +1353186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098192,6 +1353208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098243,6 +1353262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098262,6 +1353284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098343,6 +1353368,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098362,6 +1353390,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098413,6 +1353444,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098432,6 +1353466,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098513,6 +1353550,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098532,6 +1353572,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098583,6 +1353626,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098602,6 +1353648,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098683,6 +1353732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098702,6 +1353754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098753,6 +1353808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098772,6 +1353830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098853,6 +1353914,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098872,6 +1353936,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1098923,6 +1353990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1098942,6 +1354012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099023,6 +1354096,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099042,6 +1354118,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099093,6 +1354172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099112,6 +1354194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099193,6 +1354278,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099212,6 +1354300,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099263,6 +1354354,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099282,6 +1354376,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099363,6 +1354460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099382,6 +1354482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099433,6 +1354536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099452,6 +1354558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099533,6 +1354642,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099552,6 +1354664,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099603,6 +1354718,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099622,6 +1354740,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099703,6 +1354824,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099722,6 +1354846,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099773,6 +1354900,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099792,6 +1354922,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099873,6 +1355006,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099892,6 +1355028,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1099943,6 +1355082,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1099962,6 +1355104,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100043,6 +1355188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100062,6 +1355210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100113,6 +1355264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100132,6 +1355286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100213,6 +1355370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100232,6 +1355392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100283,6 +1355446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100302,6 +1355468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100383,6 +1355552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100402,6 +1355574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100453,6 +1355628,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100472,6 +1355650,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100553,6 +1355734,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100572,6 +1355756,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100623,6 +1355810,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100642,6 +1355832,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100723,6 +1355916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100742,6 +1355938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100793,6 +1355992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1100812,6 +1356014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1100912,6 +1356117,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1101105,6 +1356311,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101124,6 +1356333,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101174,6 +1356386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101193,6 +1356408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101282,6 +1356500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101301,6 +1356522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101352,6 +1356576,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101371,6 +1356598,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101452,6 +1356682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101471,6 +1356704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101522,6 +1356758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101541,6 +1356780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101622,6 +1356864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101641,6 +1356886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101692,6 +1356940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101711,6 +1356962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101792,6 +1357046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101811,6 +1357068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101862,6 +1357122,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101881,6 +1357144,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1101962,6 +1357228,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1101981,6 +1357250,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102032,6 +1357304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102051,6 +1357326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102132,6 +1357410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102151,6 +1357432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102202,6 +1357486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102221,6 +1357508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102302,6 +1357592,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102321,6 +1357614,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102372,6 +1357668,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102391,6 +1357690,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102472,6 +1357774,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102491,6 +1357796,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102542,6 +1357850,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102561,6 +1357872,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102642,6 +1357956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102661,6 +1357978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102712,6 +1358032,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102731,6 +1358054,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102812,6 +1358138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102831,6 +1358160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102882,6 +1358214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1102901,6 +1358236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1102982,6 +1358320,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103001,6 +1358342,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103052,6 +1358396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103071,6 +1358418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103152,6 +1358502,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103171,6 +1358524,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103222,6 +1358578,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103241,6 +1358600,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103322,6 +1358684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103341,6 +1358706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103392,6 +1358760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103411,6 +1358782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103492,6 +1358866,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103511,6 +1358888,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103562,6 +1358942,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103581,6 +1358964,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103662,6 +1359048,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103681,6 +1359070,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103732,6 +1359124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103751,6 +1359146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103832,6 +1359230,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103851,6 +1359252,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1103902,6 +1359306,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1103921,6 +1359328,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1104002,6 +1359412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1104021,6 +1359434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1104072,6 +1359488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1104091,6 +1359510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1104172,6 +1359594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1104191,6 +1359616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1104242,6 +1359670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1104261,6 +1359692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1104342,6 +1359776,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1104361,6 +1359798,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1104412,6 +1359852,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1104431,6 +1359874,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1105319,6 +1360765,81 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1510606400 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1510606401} + - component: {fileID: 1510606403} + - component: {fileID: 1510606402} + m_Layer: 0 + m_Name: axis_y_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1510606401 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1510606400} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1137991603} + m_Father: {fileID: 253333212} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1510606402 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1510606400} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1510606403 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1510606400} + m_CullTransparentMesh: 0 --- !u!1 &1510992242 GameObject: m_ObjectHideFlags: 0 @@ -1105472,6 +1360993,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1511172940} m_CullTransparentMesh: 0 +--- !u!1 &1511379881 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1511379882} + - component: {fileID: 1511379884} + - component: {fileID: 1511379883} + m_Layer: 0 + m_Name: axis_x3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1511379882 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1511379881} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1522821510} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 834, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1511379883 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1511379881} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 2020-10-27 +--- !u!222 &1511379884 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1511379881} + m_CullTransparentMesh: 0 --- !u!1 &1511647515 GameObject: m_ObjectHideFlags: 0 @@ -1106572,6 +1362171,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1518783319 GameObject: m_ObjectHideFlags: 0 @@ -1107441,6 +1363053,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Stack & Area @@ -1107474,6 +1363092,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1107512,6 +1363131,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1108247,6 +1363867,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1108440,6 +1364061,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1108459,6 +1364083,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1108509,6 +1364136,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1108528,6 +1364158,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1108617,6 +1364250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1108636,6 +1364272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1108687,6 +1364326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1108706,6 +1364348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1108784,6 +1364429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1108803,6 +1364451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1108854,6 +1364505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1108873,6 +1364527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1108951,6 +1364608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1108970,6 +1364630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109021,6 +1364684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109040,6 +1364706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109118,6 +1364787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109137,6 +1364809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109188,6 +1364863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109207,6 +1364885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109285,6 +1364966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109304,6 +1364988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109355,6 +1365042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109374,6 +1365064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109452,6 +1365145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109471,6 +1365167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109522,6 +1365221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109541,6 +1365243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109619,6 +1365324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109638,6 +1365346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109689,6 +1365400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1109708,6 +1365422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1109805,6 +1365522,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1109998,6 +1365716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110017,6 +1365738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110067,6 +1365791,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110086,6 +1365813,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110175,6 +1365905,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110194,6 +1365927,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110245,6 +1365981,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110264,6 +1366003,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110342,6 +1366084,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110361,6 +1366106,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110412,6 +1366160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110431,6 +1366182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110509,6 +1366263,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110528,6 +1366285,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110579,6 +1366339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110598,6 +1366361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110676,6 +1366442,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110695,6 +1366464,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110746,6 +1366518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110765,6 +1366540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110843,6 +1366621,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110862,6 +1366643,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1110913,6 +1366697,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1110932,6 +1366719,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111010,6 +1366800,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111029,6 +1366822,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111080,6 +1366876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111099,6 +1366898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111177,6 +1366979,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111196,6 +1367001,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111247,6 +1367055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111266,6 +1367077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111363,6 +1367177,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1111556,6 +1367371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111575,6 +1367393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111625,6 +1367446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111644,6 +1367468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111733,6 +1367560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111752,6 +1367582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111803,6 +1367636,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111822,6 +1367658,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111900,6 +1367739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111919,6 +1367761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1111970,6 +1367815,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1111989,6 +1367837,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112067,6 +1367918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112086,6 +1367940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112137,6 +1367994,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112156,6 +1368016,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112234,6 +1368097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112253,6 +1368119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112304,6 +1368173,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112323,6 +1368195,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112401,6 +1368276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112420,6 +1368298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112471,6 +1368352,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112490,6 +1368374,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112568,6 +1368455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112587,6 +1368477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112638,6 +1368531,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112657,6 +1368553,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112735,6 +1368634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112754,6 +1368656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112805,6 +1368710,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1112824,6 +1368732,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1112921,6 +1368832,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1113114,6 +1369026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113133,6 +1369048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113183,6 +1369101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113202,6 +1369123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113291,6 +1369215,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113310,6 +1369237,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113361,6 +1369291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113380,6 +1369313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113458,6 +1369394,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113477,6 +1369416,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113528,6 +1369470,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113547,6 +1369492,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113625,6 +1369573,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113644,6 +1369595,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113695,6 +1369649,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113714,6 +1369671,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113792,6 +1369752,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113811,6 +1369774,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113862,6 +1369828,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113881,6 +1369850,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1113959,6 +1369931,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1113978,6 +1369953,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114029,6 +1370007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114048,6 +1370029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114126,6 +1370110,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114145,6 +1370132,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114196,6 +1370186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114215,6 +1370208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114293,6 +1370289,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114312,6 +1370311,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114363,6 +1370365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114382,6 +1370387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114479,6 +1370487,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1114672,6 +1370681,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114691,6 +1370703,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114741,6 +1370756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114760,6 +1370778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114849,6 +1370870,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114868,6 +1370892,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1114919,6 +1370946,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1114938,6 +1370968,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115016,6 +1371049,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115035,6 +1371071,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115086,6 +1371125,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115105,6 +1371147,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115183,6 +1371228,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115202,6 +1371250,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115253,6 +1371304,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115272,6 +1371326,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115350,6 +1371407,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115369,6 +1371429,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115420,6 +1371483,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115439,6 +1371505,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115517,6 +1371586,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115536,6 +1371608,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115587,6 +1371662,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115606,6 +1371684,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115684,6 +1371765,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115703,6 +1371787,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115754,6 +1371841,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115773,6 +1371863,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115851,6 +1371944,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115870,6 +1371966,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1115921,6 +1372020,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1115940,6 +1372042,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1116271,6 +1372376,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1522606472} m_CullTransparentMesh: 0 +--- !u!1 &1522821509 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1522821510} + m_Layer: 0 + m_Name: axis_x + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1522821510 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1522821509} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1323857805} + - {fileID: 701076988} + - {fileID: 1946573986} + - {fileID: 1511379882} + - {fileID: 1220567495} + - {fileID: 959435110} + m_Father: {fileID: 1033575168} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1523552420 GameObject: m_ObjectHideFlags: 1 @@ -1117367,6 +1373513,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1529208163 GameObject: m_ObjectHideFlags: 0 @@ -1117972,6 +1374131,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1533615681} m_CullTransparentMesh: 0 +--- !u!1 &1534759417 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1534759418} + - component: {fileID: 1534759420} + - component: {fileID: 1534759419} + m_Layer: 0 + m_Name: painter_b + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1534759418 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534759417} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1534759419 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534759417} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1534759420 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1534759417} + m_CullTransparentMesh: 0 --- !u!1 &1535244597 GameObject: m_ObjectHideFlags: 1 @@ -1119201,11 +1375424,16 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 953f0e846565c4086a4bcdc6bc14cf85, type: 3} m_Name: m_EditorClassIdentifier: - m_NowVersion: 2.0.0-20210205 + m_NowVersion: 2.0.1-20210226 m_NewVersion: m_ChartList: - - {fileID: 1693045526} + - {fileID: 651764996} + - {fileID: 1033575166} + - {fileID: 1070880689} - {fileID: 1867673944} + - {fileID: 1693045526} + - {fileID: 1000969946} + - {fileID: 472702068} --- !u!4 &1544781712 Transform: m_ObjectHideFlags: 0 @@ -1125527,6 +1381755,81 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1579465095} m_CullTransparentMesh: 0 +--- !u!1 &1579577511 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1579577512} + - component: {fileID: 1579577514} + - component: {fileID: 1579577513} + m_Layer: 0 + m_Name: axis_x_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1579577512 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1579577511} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1678631313} + m_Father: {fileID: 344721546} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1579577513 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1579577511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1579577514 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1579577511} + m_CullTransparentMesh: 0 --- !u!1 &1580042356 GameObject: m_ObjectHideFlags: 0 @@ -1125618,6 +1381921,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: ItemStyle @@ -1125651,6 +1381960,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1125689,6 +1381999,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1125916,6 +1382227,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 1 m_RingGap: 10 @@ -1126109,6 +1382421,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1126128,6 +1382443,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1126178,6 +1382496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1126197,6 +1382518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1126286,6 +1382610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1126305,6 +1382632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 4291431965 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1126356,6 +1382686,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1126375,6 +1382708,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1126453,6 +1382789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1126472,6 +1382811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1126523,6 +1382865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1126542,6 +1382887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1126620,6 +1382968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1126639,6 +1382990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1126690,6 +1383044,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1126709,6 +1383066,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1130685,6 +1387045,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1602374979} m_CullTransparentMesh: 0 +--- !u!1 &1603258687 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1603258688} + - component: {fileID: 1603258690} + - component: {fileID: 1603258689} + m_Layer: 0 + m_Name: axis_y12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1603258688 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1603258687} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1889259906} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 194.8} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1603258689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1603258687} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1603258690 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1603258687} + m_CullTransparentMesh: 0 --- !u!1 &1603476450 GameObject: m_ObjectHideFlags: 1 @@ -1131135,6 +1387573,42 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1605016433} m_CullTransparentMesh: 0 +--- !u!1 &1606064897 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1606064898} + m_Layer: 0 + m_Name: serie + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1606064898 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1606064897} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2143151799} + m_Father: {fileID: 651764999} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1606820801 GameObject: m_ObjectHideFlags: 0 @@ -1133532,6 +1390006,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1615934690} m_CullTransparentMesh: 0 +--- !u!1 &1616137081 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1616137082} + - component: {fileID: 1616137084} + - component: {fileID: 1616137083} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1616137082 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1616137081} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1794954420} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 170.79999} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1616137083 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1616137081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 20 +--- !u!222 &1616137084 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1616137081} + m_CullTransparentMesh: 0 --- !u!1 &1616175886 GameObject: m_ObjectHideFlags: 0 @@ -1134234,6 +1390786,7 @@ RectTransform: - {fileID: 1458796671} - {fileID: 1598106459} - {fileID: 935316430} + - {fileID: 642070750} - {fileID: 1753135967} - {fileID: 1841306101} m_Father: {fileID: 1157708624} @@ -1135403,6 +1391956,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &1629018941 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1136718,6 +1393383,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Capsue @@ -1136751,6 +1393422,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1136789,6 +1393461,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1137525,6 +1394198,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1137718,6 +1394392,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 4294545569 @@ -1137737,6 +1394414,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 4279111182 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1137787,6 +1394467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1137806,6 +1394489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1137895,6 +1394581,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1137914,6 +1394603,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1137965,6 +1394657,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1137984,6 +1394679,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138062,6 +1394760,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138081,6 +1394782,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138132,6 +1394836,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138151,6 +1394858,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138229,6 +1394939,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138248,6 +1394961,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138299,6 +1395015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138318,6 +1395037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138396,6 +1395118,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138415,6 +1395140,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138466,6 +1395194,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138485,6 +1395216,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138563,6 +1395297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138582,6 +1395319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138633,6 +1395373,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138652,6 +1395395,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138730,6 +1395476,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138749,6 +1395498,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138800,6 +1395552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138819,6 +1395574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138897,6 +1395655,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138916,6 +1395677,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1138967,6 +1395731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1138986,6 +1395753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1139064,6 +1395834,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1139083,6 +1395856,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1139134,6 +1395910,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1139153,6 +1395932,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1140535,6 +1397317,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Simple Radar @@ -1140568,6 +1397356,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1140606,6 +1397395,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1140976,6 +1397766,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1141169,6 +1397960,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1141188,6 +1397982,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1141238,6 +1398035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1141257,6 +1398057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1141346,6 +1398149,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1141365,6 +1398171,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1141416,6 +1398225,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1141435,6 +1398247,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1141518,6 +1398333,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1141537,6 +1398355,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1141588,6 +1398409,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1141607,6 +1398431,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1142640,6 +1399467,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1644719451 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1644719452} + - component: {fileID: 1644719454} + - component: {fileID: 1644719453} + m_Layer: 0 + m_Name: axis_x14 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1644719452 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1644719451} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 264878278} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 834, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1644719453 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1644719451} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x5 +--- !u!222 &1644719454 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1644719451} + m_CullTransparentMesh: 0 --- !u!1 &1645096521 GameObject: m_ObjectHideFlags: 0 @@ -1144280,6 +1401185,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1652238608 GameObject: m_ObjectHideFlags: 1 @@ -1146160,6 +1403078,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1661323521} m_CullTransparentMesh: 0 +--- !u!1 &1661633285 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1661633286} + - component: {fileID: 1661633288} + - component: {fileID: 1661633287} + m_Layer: 0 + m_Name: axis_y15 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1661633286 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661633285} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2053519850} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 382} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1661633287 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661633285} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1661633288 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661633285} + m_CullTransparentMesh: 0 --- !u!1 &1661848805 GameObject: m_ObjectHideFlags: 0 @@ -1148523,6 +1405519,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1676944263} m_CullTransparentMesh: 0 +--- !u!1 &1677008479 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1677008480} + - component: {fileID: 1677008482} + - component: {fileID: 1677008481} + m_Layer: 0 + m_Name: axis_x12 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1677008480 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1677008479} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1813797943} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 520.4, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1677008481 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1677008479} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x3 +--- !u!222 &1677008482 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1677008479} + m_CullTransparentMesh: 0 --- !u!1 &1678522931 GameObject: m_ObjectHideFlags: 0 @@ -1148634,6 +1405708,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1678631312 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1678631313} + - component: {fileID: 1678631315} + - component: {fileID: 1678631314} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1678631313 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1678631312} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1579577512} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1678631314 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1678631312} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1678631315 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1678631312} + m_CullTransparentMesh: 0 --- !u!1 &1679655707 GameObject: m_ObjectHideFlags: 0 @@ -1149477,6 +1406629,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1682762844 GameObject: m_ObjectHideFlags: 0 @@ -1149950,6 +1407115,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1683725135} m_CullTransparentMesh: 0 +--- !u!1 &1683868093 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1683868094} + - component: {fileID: 1683868096} + - component: {fileID: 1683868095} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1683868094 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1683868093} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 83293755} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1683868095 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1683868093} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1683868096 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1683868093} + m_CullTransparentMesh: 0 --- !u!1 &1684275427 GameObject: m_ObjectHideFlags: 0 @@ -1151990,6 +1409233,7 @@ RectTransform: - {fileID: 1721380440} - {fileID: 2046705841} - {fileID: 257027248} + - {fileID: 1841565855} - {fileID: 1467054742} m_Father: {fileID: 945062866} m_RootOrder: 2 @@ -1152035,6 +1409279,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: BarChart @@ -1152068,6 +1409318,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1152106,6 +1409357,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1152834,6 +1410086,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1153027,6 +1410280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153046,6 +1410302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153096,6 +1410355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153115,6 +1410377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153204,6 +1410469,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153223,6 +1410491,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153274,6 +1410545,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153293,6 +1410567,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153371,6 +1410648,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153390,6 +1410670,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153441,6 +1410724,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153460,6 +1410746,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153538,6 +1410827,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153557,6 +1410849,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153608,6 +1410903,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153627,6 +1410925,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153705,6 +1411006,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153724,6 +1411028,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153775,6 +1411082,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153794,6 +1411104,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153872,6 +1411185,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153891,6 +1411207,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1153942,6 +1411261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1153961,6 +1411283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1154891,6 +1412216,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Rounded corners @@ -1154924,6 +1412255,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1154962,6 +1412294,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1155695,6 +1413028,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1155888,6 +1413222,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1155907,6 +1413244,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.703 m_TooltipFormatter: m_NumericFormatter: @@ -1155957,6 +1413297,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1155976,6 +1413319,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156065,6 +1413411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156084,6 +1413433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156135,6 +1413487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156154,6 +1413509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156232,6 +1413590,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156251,6 +1413612,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156302,6 +1413666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156321,6 +1413688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156399,6 +1413769,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156418,6 +1413791,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156469,6 +1413845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156488,6 +1413867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156566,6 +1413948,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156585,6 +1413970,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156636,6 +1414024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156655,6 +1414046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156733,6 +1414127,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156752,6 +1414149,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1156803,6 +1414203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1156822,6 +1414225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1159533,6 +1416939,84 @@ RectTransform: m_AnchoredPosition: {x: -287.33334, y: 143.66667} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1710413306 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1710413307} + - component: {fileID: 1710413309} + - component: {fileID: 1710413308} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1710413307 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1710413306} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 150470113} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 24} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1710413308 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1710413306} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 24 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Base Candlestick +--- !u!222 &1710413309 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1710413306} + m_CullTransparentMesh: 0 --- !u!1 &1710535138 GameObject: m_ObjectHideFlags: 0 @@ -1162511,6 +1419995,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &1727182234 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1163632,6 +1421228,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1734519178 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1734519179} + - component: {fileID: 1734519181} + - component: {fileID: 1734519180} + m_Layer: 0 + m_Name: axis_x10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1734519179 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1734519178} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1813797943} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 442, y: -33} + m_SizeDelta: {x: 0, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1734519180 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1734519178} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1734519181 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1734519178} + m_CullTransparentMesh: 0 --- !u!1 &1734776532 GameObject: m_ObjectHideFlags: 0 @@ -1163736,6 +1421410,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: line-bar-pie @@ -1163769,6 +1421449,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1163807,6 +1421488,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1164544,6 +1422226,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1164737,6 +1422420,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1164756,6 +1422442,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1164806,6 +1422495,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1164825,6 +1422517,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1164914,6 +1422609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1164933,6 +1422631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1164984,6 +1422685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165003,6 +1422707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165081,6 +1422788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165100,6 +1422810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165151,6 +1422864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165170,6 +1422886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165248,6 +1422967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165267,6 +1422989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165318,6 +1423043,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165337,6 +1423065,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165415,6 +1423146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165434,6 +1423168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165485,6 +1423222,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165504,6 +1423244,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165582,6 +1423325,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165601,6 +1423347,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165652,6 +1423401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165671,6 +1423423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1165768,6 +1423523,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1165961,6 +1423717,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1165980,6 +1423739,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166030,6 +1423792,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166049,6 +1423814,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166138,6 +1423906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166157,6 +1423928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166208,6 +1423982,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166227,6 +1424004,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166305,6 +1424085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166324,6 +1424107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166375,6 +1424161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166394,6 +1424183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166472,6 +1424264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166491,6 +1424286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166542,6 +1424340,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166561,6 +1424362,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166639,6 +1424443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166658,6 +1424465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166709,6 +1424519,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166728,6 +1424541,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166806,6 +1424622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166825,6 +1424644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166876,6 +1424698,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1166895,6 +1424720,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1166992,6 +1424820,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1167185,6 +1425014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167204,6 +1425036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167254,6 +1425089,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167273,6 +1425111,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167362,6 +1425203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167381,6 +1425225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167432,6 +1425279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167451,6 +1425301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167529,6 +1425382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167548,6 +1425404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167599,6 +1425458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167618,6 +1425480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167696,6 +1425561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167715,6 +1425583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167766,6 +1425637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167785,6 +1425659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167863,6 +1425740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167882,6 +1425762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1167933,6 +1425816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1167952,6 +1425838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1168216,6 +1426105,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Custom Drawing @@ -1168249,6 +1426144,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1168287,6 +1426183,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1169022,6 +1426919,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1169215,6 +1427113,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169234,6 +1427135,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169284,6 +1427188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169303,6 +1427210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169392,6 +1427302,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169411,6 +1427324,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169462,6 +1427378,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169481,6 +1427400,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169559,6 +1427481,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169578,6 +1427503,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169629,6 +1427557,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169648,6 +1427579,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169726,6 +1427660,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169745,6 +1427682,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169796,6 +1427736,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169815,6 +1427758,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169893,6 +1427839,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169912,6 +1427861,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1169963,6 +1427915,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1169982,6 +1427937,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170060,6 +1428018,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170079,6 +1428040,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170130,6 +1428094,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170149,6 +1428116,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170227,6 +1428197,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170246,6 +1428219,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170297,6 +1428273,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170316,6 +1428295,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170394,6 +1428376,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170413,6 +1428398,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170464,6 +1428452,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170483,6 +1428474,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170580,6 +1428574,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1170773,6 +1428768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170792,6 +1428790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170842,6 +1428843,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170861,6 +1428865,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1170950,6 +1428957,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1170969,6 +1428979,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171020,6 +1429033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171039,6 +1429055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171117,6 +1429136,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171136,6 +1429158,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171187,6 +1429212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171206,6 +1429234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171284,6 +1429315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171303,6 +1429337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171354,6 +1429391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171373,6 +1429413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171451,6 +1429494,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171470,6 +1429516,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171521,6 +1429570,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171540,6 +1429592,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171618,6 +1429673,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171637,6 +1429695,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171688,6 +1429749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171707,6 +1429771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171785,6 +1429852,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171804,6 +1429874,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171855,6 +1429928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171874,6 +1429950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1171952,6 +1430031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1171971,6 +1430053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1172022,6 +1430107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1172041,6 +1430129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1174270,6 +1432361,12 @@ MonoBehaviour: m_Title: "Combinations \u7EC4\u5408\u56FE" m_Selected: 0 m_Panel: {fileID: 1753135965} + - m_Name: CandlestickChart + m_SubName: "K\u7EBF\u56FE" + m_Column: 2 + m_Title: "CandlestickChart K\u7EBF\u56FE" + m_Selected: 0 + m_Panel: {fileID: 642070749} - m_Name: Other m_SubName: "\u5176\u4ED6" m_Column: 2 @@ -1174457,7 +1432554,7 @@ RectTransform: - {fileID: 1037977810} - {fileID: 1880805081} m_Father: {fileID: 1621547891} - m_RootOrder: 11 + m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} @@ -1174522,6 +1432619,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &1753373223 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1175601,6 +1433810,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1756666795} m_CullTransparentMesh: 0 +--- !u!1 &1757801070 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1757801071} + - component: {fileID: 1757801073} + - component: {fileID: 1757801072} + m_Layer: 0 + m_Name: painter_7 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1757801071 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757801070} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1757801072 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757801070} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1757801073 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757801070} + m_CullTransparentMesh: 0 --- !u!1 &1758195071 GameObject: m_ObjectHideFlags: 0 @@ -1176584,6 +1434857,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1762792228} m_CullTransparentMesh: 0 +--- !u!1 &1762873901 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1762873902} + - component: {fileID: 1762873904} + - component: {fileID: 1762873903} + m_Layer: 0 + m_Name: painter_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1762873902 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762873901} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1762873903 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762873901} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1762873904 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762873901} + m_CullTransparentMesh: 0 --- !u!1 &1762884930 GameObject: m_ObjectHideFlags: 0 @@ -1177502,6 +1435839,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1765334708} m_CullTransparentMesh: 0 +--- !u!1 &1765351948 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1765351949} + - component: {fileID: 1765351951} + - component: {fileID: 1765351950} + m_Layer: 0 + m_Name: axis_y4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1765351949 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765351948} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 801904826} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 311.6} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1765351950 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765351948} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 40 +--- !u!222 &1765351951 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765351948} + m_CullTransparentMesh: 0 --- !u!1 &1765401695 GameObject: m_ObjectHideFlags: 1 @@ -1179495,6 +1437910,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1775150653} m_CullTransparentMesh: 0 +--- !u!1 &1775222153 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1775222154} + - component: {fileID: 1775222156} + - component: {fileID: 1775222155} + m_Layer: 0 + m_Name: painter_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1775222154 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1775222153} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1775222155 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1775222153} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1775222156 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1775222153} + m_CullTransparentMesh: 0 --- !u!1 &1775287707 GameObject: m_ObjectHideFlags: 1 @@ -1179738,6 +1438217,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1776713796} m_CullTransparentMesh: 0 +--- !u!1 &1776860977 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1776860978} + - component: {fileID: 1776860980} + - component: {fileID: 1776860979} + m_Layer: 0 + m_Name: painter_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1776860978 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776860977} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1776860979 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776860977} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &1776860980 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776860977} + m_CullTransparentMesh: 0 --- !u!1 &1776904690 GameObject: m_ObjectHideFlags: 0 @@ -1180830,6 +1439373,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1783674109} m_CullTransparentMesh: 0 +--- !u!1 &1783916915 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1783916916} + - component: {fileID: 1783916918} + - component: {fileID: 1783916917} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1783916916 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1783916915} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 801904826} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 100.399994} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1783916917 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1783916915} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 10 +--- !u!222 &1783916918 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1783916915} + m_CullTransparentMesh: 0 --- !u!1 &1784310770 GameObject: m_ObjectHideFlags: 0 @@ -1181935,6 +1440556,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1788832515 GameObject: m_ObjectHideFlags: 0 @@ -1182474,6 +1441108,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1789493803 GameObject: m_ObjectHideFlags: 1 @@ -1183085,6 +1441732,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Single Bar @@ -1183118,6 +1441771,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1183156,6 +1441810,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1183885,6 +1442540,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1184078,6 +1442734,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1184097,6 +1442756,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1184147,6 +1442809,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1184166,6 +1442831,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1184255,6 +1442923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1184274,6 +1442945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1184325,6 +1442999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1184344,6 +1443021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1184441,6 +1443121,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1184634,6 +1443315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1184653,6 +1443337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1184703,6 +1443390,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1184722,6 +1443412,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1184811,6 +1443504,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1184830,6 +1443526,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1184881,6 +1443580,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1184900,6 +1443602,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1184997,6 +1443702,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1185190,6 +1443896,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1185209,6 +1443918,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1185259,6 +1443971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1185278,6 +1443993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1185367,6 +1444085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1185386,6 +1444107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1185437,6 +1444161,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1185456,6 +1444183,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1185553,6 +1444283,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1185746,6 +1444477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1185765,6 +1444499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1185815,6 +1444552,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1185834,6 +1444574,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1185923,6 +1444666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1185942,6 +1444688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1185993,6 +1444742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1186012,6 +1444764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1186388,6 +1445143,122 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1794900651} m_CullTransparentMesh: 0 +--- !u!1 &1794954419 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1794954420} + m_Layer: 0 + m_Name: axis_y + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1794954420 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1794954419} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1839739281} + - {fileID: 1817016278} + - {fileID: 1616137082} + - {fileID: 244744566} + - {fileID: 959673523} + - {fileID: 1298640645} + m_Father: {fileID: 1033575168} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!1 &1795514724 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1795514725} + - component: {fileID: 1795514727} + - component: {fileID: 1795514726} + m_Layer: 0 + m_Name: axis_y1_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1795514725 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1795514724} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2106595011} + m_Father: {fileID: 344721546} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1795514726 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1795514724} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1795514727 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1795514724} + m_CullTransparentMesh: 0 --- !u!1 &1795629828 GameObject: m_ObjectHideFlags: 0 @@ -1187460,6 +1446331,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1801226429 GameObject: m_ObjectHideFlags: 1 @@ -1189149,6 +1448033,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1807649939 GameObject: m_ObjectHideFlags: 1 @@ -1190537,6 +1449434,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1813287332} m_CullTransparentMesh: 0 +--- !u!1 &1813797942 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1813797943} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1813797943 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1813797942} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1734519179} + - {fileID: 417987464} + - {fileID: 1677008480} + - {fileID: 446569232} + - {fileID: 1354818626} + - {fileID: 779803718} + m_Father: {fileID: 1070880691} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1814781088 GameObject: m_ObjectHideFlags: 1 @@ -1191078,6 +1450016,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1816910281} m_CullTransparentMesh: 0 +--- !u!1 &1817016277 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1817016278} + - component: {fileID: 1817016280} + - component: {fileID: 1817016279} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1817016278 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1817016277} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1794954420} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 100.399994} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1817016279 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1817016277} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 10 +--- !u!222 &1817016280 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1817016277} + m_CullTransparentMesh: 0 --- !u!1 &1817593751 GameObject: m_ObjectHideFlags: 0 @@ -1194738,6 +1453754,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Smooth @@ -1194771,6 +1453793,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1194809,6 +1453832,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1195544,6 +1454568,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1195737,6 +1454762,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1195756,6 +1454784,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1195806,6 +1454837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1195825,6 +1454859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1195914,6 +1454951,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1195933,6 +1454973,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1195984,6 +1455027,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196003,6 +1455049,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196081,6 +1455130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196100,6 +1455152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196151,6 +1455206,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196170,6 +1455228,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196248,6 +1455309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196267,6 +1455331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196318,6 +1455385,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196337,6 +1455407,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196415,6 +1455488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196434,6 +1455510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196485,6 +1455564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196504,6 +1455586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196582,6 +1455667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196601,6 +1455689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196652,6 +1455743,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196671,6 +1455765,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196749,6 +1455846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196768,6 +1455868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196819,6 +1455922,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196838,6 +1455944,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196916,6 +1456025,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1196935,6 +1456047,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1196986,6 +1456101,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197005,6 +1456123,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197102,6 +1456223,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1197295,6 +1456417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197314,6 +1456439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197364,6 +1456492,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197383,6 +1456514,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197472,6 +1456606,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197491,6 +1456628,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197542,6 +1456682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197561,6 +1456704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197639,6 +1456785,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197658,6 +1456807,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197709,6 +1456861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197728,6 +1456883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197806,6 +1456964,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197825,6 +1456986,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197876,6 +1457040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197895,6 +1457062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1197973,6 +1457143,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1197992,6 +1457165,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1198043,6 +1457219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1198062,6 +1457241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1198140,6 +1457322,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1198159,6 +1457344,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1198210,6 +1457398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1198229,6 +1457420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1198307,6 +1457501,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1198326,6 +1457523,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1198377,6 +1457577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1198396,6 +1457599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1198474,6 +1457680,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1198493,6 +1457702,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1198544,6 +1457756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1198563,6 +1457778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1199133,6 +1458351,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &1839739280 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1839739281} + - component: {fileID: 1839739283} + - component: {fileID: 1839739282} + m_Layer: 0 + m_Name: axis_y0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1839739281 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1839739280} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1794954420} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1839739282 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1839739280} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1839739283 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1839739280} + m_CullTransparentMesh: 0 --- !u!1 &1840035935 GameObject: m_ObjectHideFlags: 0 @@ -1199318,7 +1458614,7 @@ RectTransform: - {fileID: 1150011278} - {fileID: 1368920484} m_Father: {fileID: 1621547891} - m_RootOrder: 12 + m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} @@ -1199349,6 +1458645,43 @@ MonoBehaviour: m_Spacing: {x: 4, y: 4} m_Constraint: 0 m_ConstraintCount: 2 +--- !u!1 &1841565854 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1841565855} + m_Layer: 0 + m_Name: datazoom1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1841565855 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1841565854} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2092178465} + - {fileID: 974011156} + m_Father: {fileID: 1693045525} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &1841830830 GameObject: m_ObjectHideFlags: 0 @@ -1200299,6 +1459632,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1847197775} m_CullTransparentMesh: 0 +--- !u!1 &1847728686 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1847728687} + - component: {fileID: 1847728689} + - component: {fileID: 1847728688} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1847728687 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1847728686} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 193992667} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 52, y: 194.8} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1847728688 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1847728686} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 8000 +--- !u!222 &1847728689 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1847728686} + m_CullTransparentMesh: 0 --- !u!1 &1848320092 GameObject: m_ObjectHideFlags: 1 @@ -1200756,6 +1460167,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1849786278 GameObject: m_ObjectHideFlags: 1 @@ -1202007,6 +1461431,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1856746192} m_CullTransparentMesh: 0 +--- !u!1 &1857001746 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1857001747} + - component: {fileID: 1857001749} + - component: {fileID: 1857001748} + m_Layer: 0 + m_Name: axis_y5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1857001747 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1857001746} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 193992667} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 52, y: 382} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1857001748 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1857001746} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 20000 +--- !u!222 &1857001749 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1857001746} + m_CullTransparentMesh: 0 --- !u!1 &1857049189 GameObject: m_ObjectHideFlags: 0 @@ -1203583,6 +1463085,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1203616,6 +1463124,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1203654,6 +1463163,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1204387,6 +1463897,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1204580,6 +1464091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1204599,6 +1464113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1204649,6 +1464166,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1204668,6 +1464188,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1204757,6 +1464280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1204776,6 +1464302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1204827,6 +1464356,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1204846,6 +1464378,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1204924,6 +1464459,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1204943,6 +1464481,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1204994,6 +1464535,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205013,6 +1464557,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205091,6 +1464638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205110,6 +1464660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205161,6 +1464714,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205180,6 +1464736,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205258,6 +1464817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205277,6 +1464839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205328,6 +1464893,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205347,6 +1464915,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205425,6 +1464996,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205444,6 +1465018,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205495,6 +1465072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205514,6 +1465094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205592,6 +1465175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205611,6 +1465197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205662,6 +1465251,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205681,6 +1465273,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205759,6 +1465354,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205778,6 +1465376,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205829,6 +1465430,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205848,6 +1465452,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205926,6 +1465533,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1205945,6 +1465555,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1205996,6 +1465609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206015,6 +1465631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206093,6 +1465712,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206112,6 +1465734,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206163,6 +1465788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206182,6 +1465810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206260,6 +1465891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206279,6 +1465913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206330,6 +1465967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206349,6 +1465989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206427,6 +1466070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206446,6 +1466092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206497,6 +1466146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206516,6 +1466168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206613,6 +1466268,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1206806,6 +1466462,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206825,6 +1466484,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206875,6 +1466537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1206894,6 +1466559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1206983,6 +1466651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207002,6 +1466673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207053,6 +1466727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207072,6 +1466749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207151,6 +1466831,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207170,6 +1466853,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207221,6 +1466907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207240,6 +1466929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207319,6 +1467011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207338,6 +1467033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207389,6 +1467087,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207408,6 +1467109,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207487,6 +1467191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207506,6 +1467213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207557,6 +1467267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207576,6 +1467289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207655,6 +1467371,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207674,6 +1467393,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207725,6 +1467447,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207744,6 +1467469,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207823,6 +1467551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207842,6 +1467573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207893,6 +1467627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1207912,6 +1467649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1207991,6 +1467731,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208010,6 +1467753,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208061,6 +1467807,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208080,6 +1467829,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208159,6 +1467911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208178,6 +1467933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208229,6 +1467987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208248,6 +1468009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208327,6 +1468091,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208346,6 +1468113,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208397,6 +1468167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208416,6 +1468189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208495,6 +1468271,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208514,6 +1468293,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208565,6 +1468347,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208584,6 +1468369,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208663,6 +1468451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208682,6 +1468473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208733,6 +1468527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208752,6 +1468549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208831,6 +1468631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208850,6 +1468653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208901,6 +1468707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1208920,6 +1468729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1208999,6 +1468811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1209018,6 +1468833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1209069,6 +1468887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1209088,6 +1468909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1209672,6 +1469496,7 @@ RectTransform: - {fileID: 995122864} - {fileID: 1342237544} - {fileID: 394163680} + - {fileID: 104672481} - {fileID: 504323958} m_Father: {fileID: 945062866} m_RootOrder: 0 @@ -1209737,6 +1469562,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1209770,6 +1469601,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1209808,6 +1469640,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1210541,6 +1470374,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1210734,6 +1470568,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1210753,6 +1470590,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1210803,6 +1470643,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1210822,6 +1470665,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1210911,6 +1470757,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1210930,6 +1470779,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1210981,6 +1470833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211000,6 +1470855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211078,6 +1470936,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211097,6 +1470958,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211148,6 +1471012,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211167,6 +1471034,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211245,6 +1471115,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211264,6 +1471137,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211315,6 +1471191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211334,6 +1471213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211412,6 +1471294,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211431,6 +1471316,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211482,6 +1471370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211501,6 +1471392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211579,6 +1471473,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211598,6 +1471495,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211649,6 +1471549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211668,6 +1471571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1211765,6 +1471671,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1211958,6 +1471865,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1211977,6 +1471887,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212027,6 +1471940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212046,6 +1471962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212135,6 +1472054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212154,6 +1472076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212205,6 +1472130,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212224,6 +1472152,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212302,6 +1472233,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212321,6 +1472255,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212372,6 +1472309,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212391,6 +1472331,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212469,6 +1472412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212488,6 +1472434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212539,6 +1472488,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212558,6 +1472510,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212636,6 +1472591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212655,6 +1472613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212706,6 +1472667,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212725,6 +1472689,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212803,6 +1472770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212822,6 +1472792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1212873,6 +1472846,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1212892,6 +1472868,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1213252,6 +1473231,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: line-scatter @@ -1213285,6 +1473270,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1213323,6 +1473309,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1214056,6 +1474043,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1214249,6 +1474237,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214268,6 +1474259,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.8 m_TooltipFormatter: m_NumericFormatter: @@ -1214318,6 +1474312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214337,6 +1474334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1214426,6 +1474426,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214445,6 +1474448,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1214496,6 +1474502,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214515,6 +1474524,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1214593,6 +1474605,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214612,6 +1474627,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1214663,6 +1474681,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214682,6 +1474703,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1214760,6 +1474784,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214779,6 +1474806,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1214830,6 +1474860,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214849,6 +1474882,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1214927,6 +1474963,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1214946,6 +1474985,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1214997,6 +1475039,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215016,6 +1475061,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215094,6 +1475142,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215113,6 +1475164,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215164,6 +1475218,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215183,6 +1475240,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215261,6 +1475321,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215280,6 +1475343,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215331,6 +1475397,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215350,6 +1475419,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215428,6 +1475500,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215447,6 +1475522,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215498,6 +1475576,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215517,6 +1475598,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215595,6 +1475679,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215614,6 +1475701,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215665,6 +1475755,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215684,6 +1475777,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215762,6 +1475858,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215781,6 +1475880,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215832,6 +1475934,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215851,6 +1475956,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215929,6 +1476037,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1215948,6 +1476059,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1215999,6 +1476113,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216018,6 +1476135,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1216115,6 +1476235,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1216308,6 +1476429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216327,6 +1476451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 0.8 m_TooltipFormatter: m_NumericFormatter: @@ -1216377,6 +1476504,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216396,6 +1476526,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1216485,6 +1476618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216504,6 +1476640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1216555,6 +1476694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216574,6 +1476716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1216652,6 +1476797,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216671,6 +1476819,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1216722,6 +1476873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216741,6 +1476895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1216819,6 +1476976,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216838,6 +1476998,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1216889,6 +1477052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1216908,6 +1477074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1216986,6 +1477155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217005,6 +1477177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217056,6 +1477231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217075,6 +1477253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217153,6 +1477334,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217172,6 +1477356,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217223,6 +1477410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217242,6 +1477432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217320,6 +1477513,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217339,6 +1477535,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217390,6 +1477589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217409,6 +1477611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217487,6 +1477692,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217506,6 +1477714,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217557,6 +1477768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217576,6 +1477790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217654,6 +1477871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217673,6 +1477893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217724,6 +1477947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217743,6 +1477969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217821,6 +1478050,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217840,6 +1478072,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217891,6 +1478126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1217910,6 +1478148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1217988,6 +1478229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1218007,6 +1478251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1218058,6 +1478305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1218077,6 +1478327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1219285,6 +1479538,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1877939825} m_CullTransparentMesh: 0 +--- !u!1 &1878810548 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1878810549} + - component: {fileID: 1878810551} + - component: {fileID: 1878810550} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1878810549 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1878810548} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1476740197} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1878810550 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1878810548} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1878810551 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1878810548} + m_CullTransparentMesh: 0 --- !u!1 &1879449526 GameObject: m_ObjectHideFlags: 0 @@ -1219571,6 +1479902,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: PolarChart @@ -1219604,6 +1479941,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1219642,6 +1479980,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1220010,6 +1480349,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1220203,6 +1480543,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220222,6 +1480565,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220272,6 +1480618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220291,6 +1480640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220380,6 +1480732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220399,6 +1480754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220450,6 +1480808,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220469,6 +1480830,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220547,6 +1480911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220566,6 +1480933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220617,6 +1480987,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220636,6 +1481009,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220714,6 +1481090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220733,6 +1481112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220784,6 +1481166,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220803,6 +1481188,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220881,6 +1481269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220900,6 +1481291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1220951,6 +1481345,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1220970,6 +1481367,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221048,6 +1481448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221067,6 +1481470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221118,6 +1481524,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221137,6 +1481546,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221215,6 +1481627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221234,6 +1481649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221285,6 +1481703,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221304,6 +1481725,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221382,6 +1481806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221401,6 +1481828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221452,6 +1481882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221471,6 +1481904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221549,6 +1481985,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221568,6 +1482007,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221619,6 +1482061,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221638,6 +1482083,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221716,6 +1482164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221735,6 +1482186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221786,6 +1482240,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221805,6 +1482262,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221883,6 +1482343,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221902,6 +1482365,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1221953,6 +1482419,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1221972,6 +1482441,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222050,6 +1482522,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222069,6 +1482544,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222120,6 +1482598,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222139,6 +1482620,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222217,6 +1482701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222236,6 +1482723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222287,6 +1482777,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222306,6 +1482799,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222384,6 +1482880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222403,6 +1482902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222454,6 +1482956,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222473,6 +1482978,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222551,6 +1483059,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222570,6 +1483081,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222621,6 +1483135,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222640,6 +1483157,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222718,6 +1483238,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222737,6 +1483260,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222788,6 +1483314,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222807,6 +1483336,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222885,6 +1483417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222904,6 +1483439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1222955,6 +1483493,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1222974,6 +1483515,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223052,6 +1483596,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223071,6 +1483618,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223122,6 +1483672,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223141,6 +1483694,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223219,6 +1483775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223238,6 +1483797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223289,6 +1483851,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223308,6 +1483873,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223386,6 +1483954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223405,6 +1483976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223456,6 +1484030,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223475,6 +1484052,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223553,6 +1484133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223572,6 +1484155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223623,6 +1484209,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223642,6 +1484231,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223720,6 +1484312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223739,6 +1484334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223790,6 +1484388,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223809,6 +1484410,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223887,6 +1484491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223906,6 +1484513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1223957,6 +1484567,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1223976,6 +1484589,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224054,6 +1484670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224073,6 +1484692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224124,6 +1484746,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224143,6 +1484768,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224221,6 +1484849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224240,6 +1484871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224291,6 +1484925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224310,6 +1484947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224388,6 +1485028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224407,6 +1485050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224458,6 +1485104,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224477,6 +1485126,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224555,6 +1485207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224574,6 +1485229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224625,6 +1485283,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224644,6 +1485305,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224722,6 +1485386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224741,6 +1485408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224792,6 +1485462,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224811,6 +1485484,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224889,6 +1485565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224908,6 +1485587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1224959,6 +1485641,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1224978,6 +1485663,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225056,6 +1485744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225075,6 +1485766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225126,6 +1485820,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225145,6 +1485842,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225223,6 +1485923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225242,6 +1485945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225293,6 +1485999,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225312,6 +1486021,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225390,6 +1486102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225409,6 +1486124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225460,6 +1486178,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225479,6 +1486200,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225557,6 +1486281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225576,6 +1486303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225627,6 +1486357,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225646,6 +1486379,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225724,6 +1486460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225743,6 +1486482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225794,6 +1486536,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225813,6 +1486558,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225891,6 +1486639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225910,6 +1486661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1225961,6 +1486715,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1225980,6 +1486737,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226058,6 +1486818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226077,6 +1486840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226128,6 +1486894,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226147,6 +1486916,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226225,6 +1486997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226244,6 +1487019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226295,6 +1487073,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226314,6 +1487095,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226392,6 +1487176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226411,6 +1487198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226462,6 +1487252,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226481,6 +1487274,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226559,6 +1487355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226578,6 +1487377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226629,6 +1487431,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226648,6 +1487453,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226726,6 +1487534,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226745,6 +1487556,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226796,6 +1487610,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226815,6 +1487632,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226893,6 +1487713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226912,6 +1487735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1226963,6 +1487789,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1226982,6 +1487811,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227060,6 +1487892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227079,6 +1487914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227130,6 +1487968,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227149,6 +1487990,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227227,6 +1488071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227246,6 +1488093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227297,6 +1488147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227316,6 +1488169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227394,6 +1488250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227413,6 +1488272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227464,6 +1488326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227483,6 +1488348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227561,6 +1488429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227580,6 +1488451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227631,6 +1488505,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227650,6 +1488527,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227728,6 +1488608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227747,6 +1488630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227798,6 +1488684,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227817,6 +1488706,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227895,6 +1488787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227914,6 +1488809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1227965,6 +1488863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1227984,6 +1488885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228062,6 +1488966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228081,6 +1488988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228132,6 +1489042,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228151,6 +1489064,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228229,6 +1489145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228248,6 +1489167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228299,6 +1489221,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228318,6 +1489243,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228396,6 +1489324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228415,6 +1489346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228466,6 +1489400,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228485,6 +1489422,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228563,6 +1489503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228582,6 +1489525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228633,6 +1489579,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228652,6 +1489601,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228730,6 +1489682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228749,6 +1489704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228800,6 +1489758,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228819,6 +1489780,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228897,6 +1489861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228916,6 +1489883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1228967,6 +1489937,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1228986,6 +1489959,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229064,6 +1490040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229083,6 +1490062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229134,6 +1490116,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229153,6 +1490138,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229231,6 +1490219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229250,6 +1490241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229301,6 +1490295,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229320,6 +1490317,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229398,6 +1490398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229417,6 +1490420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229468,6 +1490474,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229487,6 +1490496,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229565,6 +1490577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229584,6 +1490599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229635,6 +1490653,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229654,6 +1490675,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229732,6 +1490756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229751,6 +1490778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229802,6 +1490832,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229821,6 +1490854,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229899,6 +1490935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229918,6 +1490957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1229969,6 +1491011,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1229988,6 +1491033,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230066,6 +1491114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230085,6 +1491136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230136,6 +1491190,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230155,6 +1491212,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230233,6 +1491293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230252,6 +1491315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230303,6 +1491369,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230322,6 +1491391,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230400,6 +1491472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230419,6 +1491494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230470,6 +1491548,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230489,6 +1491570,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230567,6 +1491651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230586,6 +1491673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230637,6 +1491727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230656,6 +1491749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230734,6 +1491830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230753,6 +1491852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230804,6 +1491906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230823,6 +1491928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230901,6 +1492009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230920,6 +1492031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1230971,6 +1492085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1230990,6 +1492107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231068,6 +1492188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231087,6 +1492210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231138,6 +1492264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231157,6 +1492286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231235,6 +1492367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231254,6 +1492389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231305,6 +1492443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231324,6 +1492465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231402,6 +1492546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231421,6 +1492568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231472,6 +1492622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231491,6 +1492644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231569,6 +1492725,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231588,6 +1492747,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231639,6 +1492801,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231658,6 +1492823,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231736,6 +1492904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231755,6 +1492926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231806,6 +1492980,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231825,6 +1493002,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231903,6 +1493083,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231922,6 +1493105,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1231973,6 +1493159,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1231992,6 +1493181,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232070,6 +1493262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232089,6 +1493284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232140,6 +1493338,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232159,6 +1493360,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232237,6 +1493441,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232256,6 +1493463,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232307,6 +1493517,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232326,6 +1493539,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232404,6 +1493620,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232423,6 +1493642,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232474,6 +1493696,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232493,6 +1493718,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232571,6 +1493799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232590,6 +1493821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232641,6 +1493875,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232660,6 +1493897,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232738,6 +1493978,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232757,6 +1494000,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232808,6 +1494054,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232827,6 +1494076,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232905,6 +1494157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232924,6 +1494179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1232975,6 +1494233,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1232994,6 +1494255,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233072,6 +1494336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233091,6 +1494358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233142,6 +1494412,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233161,6 +1494434,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233239,6 +1494515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233258,6 +1494537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233309,6 +1494591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233328,6 +1494613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233406,6 +1494694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233425,6 +1494716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233476,6 +1494770,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233495,6 +1494792,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233573,6 +1494873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233592,6 +1494895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233643,6 +1494949,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233662,6 +1494971,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233740,6 +1495052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233759,6 +1495074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233810,6 +1495128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233829,6 +1495150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233907,6 +1495231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233926,6 +1495253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1233977,6 +1495307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1233996,6 +1495329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234074,6 +1495410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234093,6 +1495432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234144,6 +1495486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234163,6 +1495508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234241,6 +1495589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234260,6 +1495611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234311,6 +1495665,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234330,6 +1495687,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234408,6 +1495768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234427,6 +1495790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234478,6 +1495844,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234497,6 +1495866,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234575,6 +1495947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234594,6 +1495969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234645,6 +1496023,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234664,6 +1496045,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234742,6 +1496126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234761,6 +1496148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234812,6 +1496202,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234831,6 +1496224,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234909,6 +1496305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234928,6 +1496327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1234979,6 +1496381,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1234998,6 +1496403,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235076,6 +1496484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235095,6 +1496506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235146,6 +1496560,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235165,6 +1496582,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235243,6 +1496663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235262,6 +1496685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235313,6 +1496739,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235332,6 +1496761,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235410,6 +1496842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235429,6 +1496864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235480,6 +1496918,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235499,6 +1496940,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235577,6 +1497021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235596,6 +1497043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235647,6 +1497097,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235666,6 +1497119,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235744,6 +1497200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235763,6 +1497222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235814,6 +1497276,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235833,6 +1497298,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235911,6 +1497379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1235930,6 +1497401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1235981,6 +1497455,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236000,6 +1497477,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236078,6 +1497558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236097,6 +1497580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236148,6 +1497634,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236167,6 +1497656,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236245,6 +1497737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236264,6 +1497759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236315,6 +1497813,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236334,6 +1497835,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236412,6 +1497916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236431,6 +1497938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236482,6 +1497992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236501,6 +1498014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236579,6 +1498095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236598,6 +1498117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236649,6 +1498171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236668,6 +1498193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236746,6 +1498274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236765,6 +1498296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236816,6 +1498350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236835,6 +1498372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236913,6 +1498453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1236932,6 +1498475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1236983,6 +1498529,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237002,6 +1498551,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237080,6 +1498632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237099,6 +1498654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237150,6 +1498708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237169,6 +1498730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237247,6 +1498811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237266,6 +1498833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237317,6 +1498887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237336,6 +1498909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237414,6 +1498990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237433,6 +1499012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237484,6 +1499066,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237503,6 +1499088,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237581,6 +1499169,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237600,6 +1499191,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237651,6 +1499245,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237670,6 +1499267,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237748,6 +1499348,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237767,6 +1499370,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237818,6 +1499424,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237837,6 +1499446,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237915,6 +1499527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1237934,6 +1499549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1237985,6 +1499603,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238004,6 +1499625,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238082,6 +1499706,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238101,6 +1499728,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238152,6 +1499782,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238171,6 +1499804,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238249,6 +1499885,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238268,6 +1499907,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238319,6 +1499961,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238338,6 +1499983,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238416,6 +1500064,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238435,6 +1500086,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238486,6 +1500140,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238505,6 +1500162,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238583,6 +1500243,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238602,6 +1500265,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238653,6 +1500319,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238672,6 +1500341,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238750,6 +1500422,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238769,6 +1500444,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238820,6 +1500498,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238839,6 +1500520,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238917,6 +1500601,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1238936,6 +1500623,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1238987,6 +1500677,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239006,6 +1500699,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239084,6 +1500780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239103,6 +1500802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239154,6 +1500856,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239173,6 +1500878,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239251,6 +1500959,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239270,6 +1500981,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239321,6 +1501035,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239340,6 +1501057,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239418,6 +1501138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239437,6 +1501160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239488,6 +1501214,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239507,6 +1501236,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239585,6 +1501317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239604,6 +1501339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239655,6 +1501393,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239674,6 +1501415,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239752,6 +1501496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239771,6 +1501518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239822,6 +1501572,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239841,6 +1501594,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239919,6 +1501675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1239938,6 +1501697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1239989,6 +1501751,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240008,6 +1501773,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240086,6 +1501854,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240105,6 +1501876,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240156,6 +1501930,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240175,6 +1501952,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240253,6 +1502033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240272,6 +1502055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240323,6 +1502109,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240342,6 +1502131,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240420,6 +1502212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240439,6 +1502234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240490,6 +1502288,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240509,6 +1502310,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240587,6 +1502391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240606,6 +1502413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240657,6 +1502467,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240676,6 +1502489,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240754,6 +1502570,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240773,6 +1502592,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240824,6 +1502646,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240843,6 +1502668,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240921,6 +1502749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1240940,6 +1502771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1240991,6 +1502825,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241010,6 +1502847,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241088,6 +1502928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241107,6 +1502950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241158,6 +1503004,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241177,6 +1503026,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241255,6 +1503107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241274,6 +1503129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241325,6 +1503183,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241344,6 +1503205,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241422,6 +1503286,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241441,6 +1503308,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241492,6 +1503362,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241511,6 +1503384,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241589,6 +1503465,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241608,6 +1503487,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241659,6 +1503541,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241678,6 +1503563,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241756,6 +1503644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241775,6 +1503666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241826,6 +1503720,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241845,6 +1503742,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241923,6 +1503823,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1241942,6 +1503845,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1241993,6 +1503899,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242012,6 +1503921,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242090,6 +1504002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242109,6 +1504024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242160,6 +1504078,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242179,6 +1504100,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242257,6 +1504181,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242276,6 +1504203,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242327,6 +1504257,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242346,6 +1504279,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242424,6 +1504360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242443,6 +1504382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242494,6 +1504436,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242513,6 +1504458,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242591,6 +1504539,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242610,6 +1504561,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242661,6 +1504615,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242680,6 +1504637,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242758,6 +1504718,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242777,6 +1504740,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242828,6 +1504794,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242847,6 +1504816,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242925,6 +1504897,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1242944,6 +1504919,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1242995,6 +1504973,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243014,6 +1504995,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243092,6 +1505076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243111,6 +1505098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243162,6 +1505152,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243181,6 +1505174,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243259,6 +1505255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243278,6 +1505277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243329,6 +1505331,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243348,6 +1505353,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243426,6 +1505434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243445,6 +1505456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243496,6 +1505510,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243515,6 +1505532,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243593,6 +1505613,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243612,6 +1505635,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243663,6 +1505689,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243682,6 +1505711,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243760,6 +1505792,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243779,6 +1505814,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243830,6 +1505868,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243849,6 +1505890,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243927,6 +1505971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1243946,6 +1505993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1243997,6 +1506047,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244016,6 +1506069,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244094,6 +1506150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244113,6 +1506172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244164,6 +1506226,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244183,6 +1506248,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244261,6 +1506329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244280,6 +1506351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244331,6 +1506405,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244350,6 +1506427,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244428,6 +1506508,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244447,6 +1506530,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244498,6 +1506584,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244517,6 +1506606,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244595,6 +1506687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244614,6 +1506709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244665,6 +1506763,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244684,6 +1506785,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244762,6 +1506866,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244781,6 +1506888,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244832,6 +1506942,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244851,6 +1506964,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244929,6 +1507045,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1244948,6 +1507067,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1244999,6 +1507121,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245018,6 +1507143,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245096,6 +1507224,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245115,6 +1507246,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245166,6 +1507300,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245185,6 +1507322,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245263,6 +1507403,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245282,6 +1507425,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245333,6 +1507479,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245352,6 +1507501,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245430,6 +1507582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245449,6 +1507604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245500,6 +1507658,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245519,6 +1507680,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245597,6 +1507761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245616,6 +1507783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245667,6 +1507837,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245686,6 +1507859,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245764,6 +1507940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245783,6 +1507962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245834,6 +1508016,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245853,6 +1508038,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1245931,6 +1508119,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1245950,6 +1508141,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246001,6 +1508195,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246020,6 +1508217,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246098,6 +1508298,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246117,6 +1508320,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246168,6 +1508374,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246187,6 +1508396,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246265,6 +1508477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246284,6 +1508499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246335,6 +1508553,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246354,6 +1508575,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246432,6 +1508656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246451,6 +1508678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246502,6 +1508732,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246521,6 +1508754,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246599,6 +1508835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246618,6 +1508857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246669,6 +1508911,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246688,6 +1508933,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246766,6 +1509014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246785,6 +1509036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246836,6 +1509090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246855,6 +1509112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1246933,6 +1509193,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1246952,6 +1509215,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247003,6 +1509269,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247022,6 +1509291,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247100,6 +1509372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247119,6 +1509394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247170,6 +1509448,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247189,6 +1509470,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247267,6 +1509551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247286,6 +1509573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247337,6 +1509627,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247356,6 +1509649,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247434,6 +1509730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247453,6 +1509752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247504,6 +1509806,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247523,6 +1509828,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247601,6 +1509909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247620,6 +1509931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247671,6 +1509985,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247690,6 +1510007,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247768,6 +1510088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247787,6 +1510110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247838,6 +1510164,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247857,6 +1510186,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1247935,6 +1510267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1247954,6 +1510289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248005,6 +1510343,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248024,6 +1510365,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248102,6 +1510446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248121,6 +1510468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248172,6 +1510522,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248191,6 +1510544,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248269,6 +1510625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248288,6 +1510647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248339,6 +1510701,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248358,6 +1510723,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248436,6 +1510804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248455,6 +1510826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248506,6 +1510880,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248525,6 +1510902,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248603,6 +1510983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248622,6 +1511005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248673,6 +1511059,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248692,6 +1511081,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248770,6 +1511162,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248789,6 +1511184,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248840,6 +1511238,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248859,6 +1511260,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1248937,6 +1511341,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1248956,6 +1511363,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249007,6 +1511417,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249026,6 +1511439,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249104,6 +1511520,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249123,6 +1511542,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249174,6 +1511596,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249193,6 +1511618,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249271,6 +1511699,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249290,6 +1511721,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249341,6 +1511775,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249360,6 +1511797,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249438,6 +1511878,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249457,6 +1511900,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249508,6 +1511954,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249527,6 +1511976,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249605,6 +1512057,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249624,6 +1512079,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249675,6 +1512133,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249694,6 +1512155,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249772,6 +1512236,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249791,6 +1512258,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249842,6 +1512312,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249861,6 +1512334,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1249939,6 +1512415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1249958,6 +1512437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250009,6 +1512491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250028,6 +1512513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250106,6 +1512594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250125,6 +1512616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250176,6 +1512670,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250195,6 +1512692,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250273,6 +1512773,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250292,6 +1512795,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250343,6 +1512849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250362,6 +1512871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250440,6 +1512952,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250459,6 +1512974,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250510,6 +1513028,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250529,6 +1513050,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250607,6 +1513131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250626,6 +1513153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250677,6 +1513207,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250696,6 +1513229,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250774,6 +1513310,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250793,6 +1513332,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250844,6 +1513386,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250863,6 +1513408,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1250941,6 +1513489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1250960,6 +1513511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251011,6 +1513565,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251030,6 +1513587,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251108,6 +1513668,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251127,6 +1513690,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251178,6 +1513744,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251197,6 +1513766,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251275,6 +1513847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251294,6 +1513869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251345,6 +1513923,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251364,6 +1513945,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251442,6 +1514026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251461,6 +1514048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251512,6 +1514102,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251531,6 +1514124,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251609,6 +1514205,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251628,6 +1514227,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251679,6 +1514281,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251698,6 +1514303,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251776,6 +1514384,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251795,6 +1514406,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251846,6 +1514460,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251865,6 +1514482,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1251943,6 +1514563,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1251962,6 +1514585,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252013,6 +1514639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252032,6 +1514661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252110,6 +1514742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252129,6 +1514764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252180,6 +1514818,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252199,6 +1514840,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252277,6 +1514921,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252296,6 +1514943,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252347,6 +1514997,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252366,6 +1515019,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252444,6 +1515100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252463,6 +1515122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252514,6 +1515176,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252533,6 +1515198,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252611,6 +1515279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252630,6 +1515301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252681,6 +1515355,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252700,6 +1515377,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252778,6 +1515458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252797,6 +1515480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252848,6 +1515534,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252867,6 +1515556,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1252945,6 +1515637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1252964,6 +1515659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253015,6 +1515713,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253034,6 +1515735,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253112,6 +1515816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253131,6 +1515838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253182,6 +1515892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253201,6 +1515914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253279,6 +1515995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253298,6 +1516017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253349,6 +1516071,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253368,6 +1516093,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253446,6 +1516174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253465,6 +1516196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253516,6 +1516250,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253535,6 +1516272,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253613,6 +1516353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253632,6 +1516375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253683,6 +1516429,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253702,6 +1516451,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253780,6 +1516532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253799,6 +1516554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253850,6 +1516608,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253869,6 +1516630,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1253947,6 +1516711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1253966,6 +1516733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254017,6 +1516787,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254036,6 +1516809,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254114,6 +1516890,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254133,6 +1516912,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254184,6 +1516966,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254203,6 +1516988,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254281,6 +1517069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254300,6 +1517091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254351,6 +1517145,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254370,6 +1517167,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254448,6 +1517248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254467,6 +1517270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254518,6 +1517324,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254537,6 +1517346,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254615,6 +1517427,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254634,6 +1517449,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254685,6 +1517503,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254704,6 +1517525,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254782,6 +1517606,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254801,6 +1517628,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254852,6 +1517682,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254871,6 +1517704,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1254949,6 +1517785,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1254968,6 +1517807,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255019,6 +1517861,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255038,6 +1517883,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255116,6 +1517964,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255135,6 +1517986,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255186,6 +1518040,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255205,6 +1518062,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255283,6 +1518143,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255302,6 +1518165,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255353,6 +1518219,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255372,6 +1518241,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255450,6 +1518322,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255469,6 +1518344,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255520,6 +1518398,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255539,6 +1518420,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255617,6 +1518501,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255636,6 +1518523,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255687,6 +1518577,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255706,6 +1518599,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255784,6 +1518680,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255803,6 +1518702,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255854,6 +1518756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255873,6 +1518778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1255951,6 +1518859,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1255970,6 +1518881,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256021,6 +1518935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256040,6 +1518957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256118,6 +1519038,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256137,6 +1519060,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256188,6 +1519114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256207,6 +1519136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256285,6 +1519217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256304,6 +1519239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256355,6 +1519293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256374,6 +1519315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256452,6 +1519396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256471,6 +1519418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256522,6 +1519472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256541,6 +1519494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256619,6 +1519575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256638,6 +1519597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256689,6 +1519651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256708,6 +1519673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256786,6 +1519754,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256805,6 +1519776,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256856,6 +1519830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256875,6 +1519852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1256953,6 +1519933,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1256972,6 +1519955,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257023,6 +1520009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257042,6 +1520031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257120,6 +1520112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257139,6 +1520134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257190,6 +1520188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257209,6 +1520210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257287,6 +1520291,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257306,6 +1520313,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257357,6 +1520367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257376,6 +1520389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257454,6 +1520470,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257473,6 +1520492,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257524,6 +1520546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257543,6 +1520568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257621,6 +1520649,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257640,6 +1520671,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257691,6 +1520725,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257710,6 +1520747,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257788,6 +1520828,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257807,6 +1520850,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257858,6 +1520904,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257877,6 +1520926,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1257955,6 +1521007,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1257974,6 +1521029,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258025,6 +1521083,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258044,6 +1521105,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258122,6 +1521186,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258141,6 +1521208,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258192,6 +1521262,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258211,6 +1521284,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258289,6 +1521365,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258308,6 +1521387,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258359,6 +1521441,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258378,6 +1521463,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258456,6 +1521544,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258475,6 +1521566,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258526,6 +1521620,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258545,6 +1521642,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258623,6 +1521723,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258642,6 +1521745,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258693,6 +1521799,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258712,6 +1521821,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258790,6 +1521902,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258809,6 +1521924,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258860,6 +1521978,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258879,6 +1522000,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1258957,6 +1522081,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1258976,6 +1522103,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259027,6 +1522157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259046,6 +1522179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259124,6 +1522260,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259143,6 +1522282,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259194,6 +1522336,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259213,6 +1522358,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259291,6 +1522439,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259310,6 +1522461,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259361,6 +1522515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259380,6 +1522537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259458,6 +1522618,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259477,6 +1522640,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259528,6 +1522694,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259547,6 +1522716,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259625,6 +1522797,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259644,6 +1522819,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259695,6 +1522873,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259714,6 +1522895,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259792,6 +1522976,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259811,6 +1522998,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259862,6 +1523052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259881,6 +1523074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1259959,6 +1523155,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1259978,6 +1523177,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260029,6 +1523231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260048,6 +1523253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260126,6 +1523334,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260145,6 +1523356,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260196,6 +1523410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260215,6 +1523432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260293,6 +1523513,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260312,6 +1523535,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260363,6 +1523589,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260382,6 +1523611,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260460,6 +1523692,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260479,6 +1523714,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260530,6 +1523768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260549,6 +1523790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260627,6 +1523871,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260646,6 +1523893,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260697,6 +1523947,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260716,6 +1523969,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260794,6 +1524050,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260813,6 +1524072,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260864,6 +1524126,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260883,6 +1524148,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1260961,6 +1524229,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1260980,6 +1524251,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261031,6 +1524305,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261050,6 +1524327,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261128,6 +1524408,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261147,6 +1524430,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261198,6 +1524484,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261217,6 +1524506,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261295,6 +1524587,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261314,6 +1524609,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261365,6 +1524663,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261384,6 +1524685,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261462,6 +1524766,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261481,6 +1524788,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261532,6 +1524842,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261551,6 +1524864,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261629,6 +1524945,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261648,6 +1524967,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261699,6 +1525021,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261718,6 +1525043,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261796,6 +1525124,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261815,6 +1525146,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261866,6 +1525200,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261885,6 +1525222,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1261963,6 +1525303,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1261982,6 +1525325,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262033,6 +1525379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262052,6 +1525401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262130,6 +1525482,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262149,6 +1525504,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262200,6 +1525558,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262219,6 +1525580,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262297,6 +1525661,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262316,6 +1525683,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262367,6 +1525737,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262386,6 +1525759,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262464,6 +1525840,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262483,6 +1525862,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262534,6 +1525916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262553,6 +1525938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262631,6 +1526019,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262650,6 +1526041,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262701,6 +1526095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262720,6 +1526117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262798,6 +1526198,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262817,6 +1526220,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262868,6 +1526274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262887,6 +1526296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1262965,6 +1526377,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1262984,6 +1526399,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263035,6 +1526453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263054,6 +1526475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263132,6 +1526556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263151,6 +1526578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263202,6 +1526632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263221,6 +1526654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263299,6 +1526735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263318,6 +1526757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263369,6 +1526811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263388,6 +1526833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263466,6 +1526914,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263485,6 +1526936,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263536,6 +1526990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263555,6 +1527012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263633,6 +1527093,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263652,6 +1527115,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263703,6 +1527169,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263722,6 +1527191,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263800,6 +1527272,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263819,6 +1527294,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263870,6 +1527348,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263889,6 +1527370,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1263967,6 +1527451,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1263986,6 +1527473,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264037,6 +1527527,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264056,6 +1527549,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264134,6 +1527630,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264153,6 +1527652,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264204,6 +1527706,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264223,6 +1527728,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264301,6 +1527809,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264320,6 +1527831,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264371,6 +1527885,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264390,6 +1527907,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264468,6 +1527988,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264487,6 +1528010,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264538,6 +1528064,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264557,6 +1528086,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264635,6 +1528167,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264654,6 +1528189,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264705,6 +1528243,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264724,6 +1528265,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264802,6 +1528346,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264821,6 +1528368,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264872,6 +1528422,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264891,6 +1528444,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1264969,6 +1528525,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1264988,6 +1528547,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265039,6 +1528601,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265058,6 +1528623,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265136,6 +1528704,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265155,6 +1528726,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265206,6 +1528780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265225,6 +1528802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265303,6 +1528883,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265322,6 +1528905,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265373,6 +1528959,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265392,6 +1528981,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265470,6 +1529062,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265489,6 +1529084,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265540,6 +1529138,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265559,6 +1529160,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265637,6 +1529241,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265656,6 +1529263,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265707,6 +1529317,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265726,6 +1529339,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265804,6 +1529420,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265823,6 +1529442,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265874,6 +1529496,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265893,6 +1529518,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1265971,6 +1529599,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1265990,6 +1529621,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266041,6 +1529675,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266060,6 +1529697,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266138,6 +1529778,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266157,6 +1529800,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266208,6 +1529854,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266227,6 +1529876,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266305,6 +1529957,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266324,6 +1529979,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266375,6 +1530033,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266394,6 +1530055,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266472,6 +1530136,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266491,6 +1530158,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266542,6 +1530212,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266561,6 +1530234,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266639,6 +1530315,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266658,6 +1530337,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266709,6 +1530391,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266728,6 +1530413,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266806,6 +1530494,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266825,6 +1530516,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266876,6 +1530570,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266895,6 +1530592,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1266973,6 +1530673,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1266992,6 +1530695,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267043,6 +1530749,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267062,6 +1530771,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267140,6 +1530852,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267159,6 +1530874,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267210,6 +1530928,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267229,6 +1530950,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267307,6 +1531031,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267326,6 +1531053,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267377,6 +1531107,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267396,6 +1531129,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267474,6 +1531210,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267493,6 +1531232,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267544,6 +1531286,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267563,6 +1531308,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267641,6 +1531389,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267660,6 +1531411,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267711,6 +1531465,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267730,6 +1531487,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267808,6 +1531568,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267827,6 +1531590,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267878,6 +1531644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267897,6 +1531666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1267975,6 +1531747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1267994,6 +1531769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268045,6 +1531823,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268064,6 +1531845,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268142,6 +1531926,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268161,6 +1531948,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268212,6 +1532002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268231,6 +1532024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268309,6 +1532105,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268328,6 +1532127,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268379,6 +1532181,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268398,6 +1532203,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268476,6 +1532284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268495,6 +1532306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268546,6 +1532360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268565,6 +1532382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268643,6 +1532463,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268662,6 +1532485,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268713,6 +1532539,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268732,6 +1532561,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268810,6 +1532642,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268829,6 +1532664,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268880,6 +1532718,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268899,6 +1532740,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1268977,6 +1532821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1268996,6 +1532843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269047,6 +1532897,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269066,6 +1532919,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269144,6 +1533000,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269163,6 +1533022,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269214,6 +1533076,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269233,6 +1533098,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269311,6 +1533179,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269330,6 +1533201,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269381,6 +1533255,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269400,6 +1533277,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269478,6 +1533358,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269497,6 +1533380,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269548,6 +1533434,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269567,6 +1533456,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269645,6 +1533537,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269664,6 +1533559,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269715,6 +1533613,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269734,6 +1533635,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269812,6 +1533716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269831,6 +1533738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269882,6 +1533792,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269901,6 +1533814,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1269979,6 +1533895,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1269998,6 +1533917,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270049,6 +1533971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270068,6 +1533993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270146,6 +1534074,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270165,6 +1534096,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270216,6 +1534150,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270235,6 +1534172,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270313,6 +1534253,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270332,6 +1534275,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270383,6 +1534329,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270402,6 +1534351,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270480,6 +1534432,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270499,6 +1534454,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270550,6 +1534508,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270569,6 +1534530,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270647,6 +1534611,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270666,6 +1534633,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270717,6 +1534687,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270736,6 +1534709,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270814,6 +1534790,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270833,6 +1534812,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270884,6 +1534866,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1270903,6 +1534888,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1270981,6 +1534969,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271000,6 +1534991,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271051,6 +1535045,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271070,6 +1535067,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271148,6 +1535148,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271167,6 +1535170,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271218,6 +1535224,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271237,6 +1535246,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271315,6 +1535327,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271334,6 +1535349,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271385,6 +1535403,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271404,6 +1535425,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271482,6 +1535506,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271501,6 +1535528,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271552,6 +1535582,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271571,6 +1535604,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271649,6 +1535685,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271668,6 +1535707,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271719,6 +1535761,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271738,6 +1535783,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271816,6 +1535864,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271835,6 +1535886,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271886,6 +1535940,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1271905,6 +1535962,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1271983,6 +1536043,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272002,6 +1536065,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272053,6 +1536119,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272072,6 +1536141,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272150,6 +1536222,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272169,6 +1536244,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272220,6 +1536298,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272239,6 +1536320,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272317,6 +1536401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272336,6 +1536423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272387,6 +1536477,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272406,6 +1536499,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272484,6 +1536580,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272503,6 +1536602,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272554,6 +1536656,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272573,6 +1536678,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272651,6 +1536759,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272670,6 +1536781,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272721,6 +1536835,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272740,6 +1536857,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272818,6 +1536938,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272837,6 +1536960,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272888,6 +1537014,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1272907,6 +1537036,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1272985,6 +1537117,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273004,6 +1537139,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273055,6 +1537193,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273074,6 +1537215,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273152,6 +1537296,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273171,6 +1537318,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273222,6 +1537372,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273241,6 +1537394,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273319,6 +1537475,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273338,6 +1537497,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273389,6 +1537551,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273408,6 +1537573,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273486,6 +1537654,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273505,6 +1537676,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273556,6 +1537730,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273575,6 +1537752,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273653,6 +1537833,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273672,6 +1537855,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273723,6 +1537909,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273742,6 +1537931,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273820,6 +1538012,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273839,6 +1538034,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273890,6 +1538088,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1273909,6 +1538110,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1273987,6 +1538191,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274006,6 +1538213,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274057,6 +1538267,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274076,6 +1538289,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274154,6 +1538370,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274173,6 +1538392,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274224,6 +1538446,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274243,6 +1538468,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274321,6 +1538549,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274340,6 +1538571,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274391,6 +1538625,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274410,6 +1538647,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274488,6 +1538728,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274507,6 +1538750,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274558,6 +1538804,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274577,6 +1538826,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274655,6 +1538907,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274674,6 +1538929,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274725,6 +1538983,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274744,6 +1539005,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274822,6 +1539086,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274841,6 +1539108,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274892,6 +1539162,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1274911,6 +1539184,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1274989,6 +1539265,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275008,6 +1539287,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275059,6 +1539341,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275078,6 +1539363,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275156,6 +1539444,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275175,6 +1539466,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275226,6 +1539520,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275245,6 +1539542,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275323,6 +1539623,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275342,6 +1539645,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275393,6 +1539699,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275412,6 +1539721,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275490,6 +1539802,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275509,6 +1539824,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275560,6 +1539878,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275579,6 +1539900,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275657,6 +1539981,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275676,6 +1540003,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275727,6 +1540057,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275746,6 +1540079,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275824,6 +1540160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275843,6 +1540182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275894,6 +1540236,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1275913,6 +1540258,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1275991,6 +1540339,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276010,6 +1540361,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276061,6 +1540415,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276080,6 +1540437,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276158,6 +1540518,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276177,6 +1540540,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276228,6 +1540594,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276247,6 +1540616,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276325,6 +1540697,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276344,6 +1540719,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276395,6 +1540773,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276414,6 +1540795,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276492,6 +1540876,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276511,6 +1540898,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276562,6 +1540952,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276581,6 +1540974,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276659,6 +1541055,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276678,6 +1541077,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276729,6 +1541131,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276748,6 +1541153,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276826,6 +1541234,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276845,6 +1541256,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276896,6 +1541310,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1276915,6 +1541332,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1276993,6 +1541413,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277012,6 +1541435,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277063,6 +1541489,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277082,6 +1541511,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277160,6 +1541592,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277179,6 +1541614,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277230,6 +1541668,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277249,6 +1541690,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277327,6 +1541771,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277346,6 +1541793,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277397,6 +1541847,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277416,6 +1541869,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277494,6 +1541950,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277513,6 +1541972,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277564,6 +1542026,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277583,6 +1542048,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277661,6 +1542129,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277680,6 +1542151,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277731,6 +1542205,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277750,6 +1542227,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277828,6 +1542308,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277847,6 +1542330,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277898,6 +1542384,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1277917,6 +1542406,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1277995,6 +1542487,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278014,6 +1542509,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278065,6 +1542563,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278084,6 +1542585,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278162,6 +1542666,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278181,6 +1542688,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278232,6 +1542742,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278251,6 +1542764,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278329,6 +1542845,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278348,6 +1542867,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278399,6 +1542921,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278418,6 +1542943,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278496,6 +1543024,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278515,6 +1543046,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278566,6 +1543100,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278585,6 +1543122,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278663,6 +1543203,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278682,6 +1543225,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278733,6 +1543279,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278752,6 +1543301,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278830,6 +1543382,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278849,6 +1543404,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278900,6 +1543458,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1278919,6 +1543480,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1278997,6 +1543561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279016,6 +1543583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279067,6 +1543637,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279086,6 +1543659,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279164,6 +1543740,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279183,6 +1543762,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279234,6 +1543816,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279253,6 +1543838,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279331,6 +1543919,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279350,6 +1543941,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279401,6 +1543995,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279420,6 +1544017,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279498,6 +1544098,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279517,6 +1544120,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279568,6 +1544174,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279587,6 +1544196,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279665,6 +1544277,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279684,6 +1544299,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279735,6 +1544353,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279754,6 +1544375,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279832,6 +1544456,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279851,6 +1544478,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279902,6 +1544532,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1279921,6 +1544554,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1279999,6 +1544635,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280018,6 +1544657,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280069,6 +1544711,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280088,6 +1544733,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280166,6 +1544814,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280185,6 +1544836,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280236,6 +1544890,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280255,6 +1544912,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280333,6 +1544993,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280352,6 +1545015,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280403,6 +1545069,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280422,6 +1545091,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280500,6 +1545172,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280519,6 +1545194,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280570,6 +1545248,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280589,6 +1545270,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280686,6 +1545370,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1280879,6 +1545564,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280898,6 +1545586,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1280948,6 +1545639,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1280967,6 +1545661,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1281056,6 +1545753,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1281075,6 +1545775,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1281126,6 +1545829,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1281145,6 +1545851,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1281223,6 +1545932,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1281242,6 +1545954,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1281293,6 +1546008,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1281312,6 +1546030,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1281390,6 +1546111,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1281409,6 +1546133,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1281460,6 +1546187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1281479,6 +1546209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1282483,6 +1547216,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &1885815271 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1282880,6 +1547725,122 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1888596393} m_CullTransparentMesh: 0 +--- !u!1 &1889259905 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1889259906} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1889259906 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889259905} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1410467496} + - {fileID: 959257129} + - {fileID: 1603258688} + - {fileID: 2115079464} + - {fileID: 435313334} + - {fileID: 881259822} + m_Father: {fileID: 651764999} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!1 &1889278935 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1889278936} + - component: {fileID: 1889278938} + - component: {fileID: 1889278937} + m_Layer: 0 + m_Name: axis_x1_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1889278936 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889278935} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1192662625} + m_Father: {fileID: 253333212} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1889278937 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889278935} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.16078432, g: 0.16078432, b: 0.16078432, a: 1} + m_RaycastTarget: 1 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1889278938 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1889278935} + m_CullTransparentMesh: 0 --- !u!1 &1890453047 GameObject: m_ObjectHideFlags: 0 @@ -1284915,6 +1549876,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1904377173 GameObject: m_ObjectHideFlags: 1 @@ -1286242,6 +1551216,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1910178699} m_CullTransparentMesh: 0 +--- !u!1 &1910345789 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1910345790} + - component: {fileID: 1910345792} + - component: {fileID: 1910345791} + m_Layer: 0 + m_Name: title_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1910345790 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1910345789} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1336991963} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -21.600006} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1910345791 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1910345789} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1910345792 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1910345789} + m_CullTransparentMesh: 0 --- !u!1 &1910350172 GameObject: m_ObjectHideFlags: 0 @@ -1286417,6 +1551469,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1286450,6 +1551508,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1286488,6 +1551547,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1286858,6 +1551918,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1287051,6 +1552112,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1287070,6 +1552134,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1287120,6 +1552187,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1287139,6 +1552209,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1287228,6 +1552301,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1287247,6 +1552323,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1287298,6 +1552377,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1287317,6 +1552399,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1287400,6 +1552485,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1287419,6 +1552507,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1287470,6 +1552561,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1287489,6 +1552583,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1288967,6 +1554064,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Clip @@ -1289000,6 +1554103,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1289038,6 +1554142,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1289773,6 +1554878,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1289966,6 +1555072,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1289985,6 +1555094,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290035,6 +1555147,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290054,6 +1555169,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290143,6 +1555261,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290162,6 +1555283,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290213,6 +1555337,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290232,6 +1555359,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290310,6 +1555440,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290329,6 +1555462,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290380,6 +1555516,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290399,6 +1555538,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290477,6 +1555619,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290496,6 +1555641,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290547,6 +1555695,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290566,6 +1555717,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290644,6 +1555798,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290663,6 +1555820,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290714,6 +1555874,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290733,6 +1555896,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290811,6 +1555977,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290830,6 +1555999,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290881,6 +1556053,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290900,6 +1556075,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1290978,6 +1556156,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1290997,6 +1556178,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291048,6 +1556232,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291067,6 +1556254,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291145,6 +1556335,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291164,6 +1556357,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291215,6 +1556411,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291234,6 +1556433,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291331,6 +1556533,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1291524,6 +1556727,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291543,6 +1556749,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291593,6 +1556802,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291612,6 +1556824,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291701,6 +1556916,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291720,6 +1556938,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291771,6 +1556992,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291790,6 +1557014,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291868,6 +1557095,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291887,6 +1557117,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1291938,6 +1557171,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1291957,6 +1557193,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292035,6 +1557274,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292054,6 +1557296,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292105,6 +1557350,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292124,6 +1557372,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292202,6 +1557453,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292221,6 +1557475,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292272,6 +1557529,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292291,6 +1557551,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292369,6 +1557632,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292388,6 +1557654,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292439,6 +1557708,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292458,6 +1557730,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292536,6 +1557811,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292555,6 +1557833,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292606,6 +1557887,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292625,6 +1557909,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292703,6 +1557990,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292722,6 +1558012,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1292773,6 +1558066,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1292792,6 +1558088,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1293102,6 +1558401,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1925467603} m_CullTransparentMesh: 0 +--- !u!1 &1925695035 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1925695036} + - component: {fileID: 1925695038} + - component: {fileID: 1925695037} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1925695036 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925695035} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 412498934} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1925695037 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925695035} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1925695038 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925695035} + m_CullTransparentMesh: 0 --- !u!1 &1925698373 GameObject: m_ObjectHideFlags: 1 @@ -1294256,6 +1559633,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1931949857} m_CullTransparentMesh: 0 +--- !u!1 &1932052124 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1932052125} + - component: {fileID: 1932052127} + - component: {fileID: 1932052126} + m_Layer: 0 + m_Name: title_sub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1932052125 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1932052124} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 150470113} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -24} + m_SizeDelta: {x: 864, y: 22} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1932052126 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1932052124} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5882353, g: 0.5882353, b: 0.5882353, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1932052127 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1932052124} + m_CullTransparentMesh: 0 --- !u!1 &1932187289 GameObject: m_ObjectHideFlags: 0 @@ -1294921,6 +1560376,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1294954,6 +1560415,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1294992,6 +1560454,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1295235,6 +1560698,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1295428,6 +1560892,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 1440863927 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 4291074325 @@ -1295447,6 +1560914,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1295497,6 +1560967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1295516,6 +1560989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1295605,6 +1561081,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1295624,6 +1561103,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1295675,6 +1561157,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1295694,6 +1561179,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1296102,6 +1561590,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1936045313 GameObject: m_ObjectHideFlags: 0 @@ -1297819,6 +1563320,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1943162444 GameObject: m_ObjectHideFlags: 0 @@ -1298409,6 +1563923,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0.5, y: 1} +--- !u!1 &1946573985 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1946573986} + - component: {fileID: 1946573988} + - component: {fileID: 1946573987} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1946573986 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946573985} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1522821510} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 638, y: -419} + m_SizeDelta: {x: 196, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1946573987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946573985} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 2020-10-26 +--- !u!222 &1946573988 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1946573985} + m_CullTransparentMesh: 0 --- !u!1 &1946601181 GameObject: m_ObjectHideFlags: 1 @@ -1299201,6 +1564793,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1948435447 GameObject: m_ObjectHideFlags: 0 @@ -1300293,6 +1565898,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1953870639 GameObject: m_ObjectHideFlags: 0 @@ -1301448,6 +1567066,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &1960984486 GameObject: m_ObjectHideFlags: 0 @@ -1303254,6 +1568885,84 @@ RectTransform: m_AnchoredPosition: {x: -287.33334, y: 143.66667} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1967725338 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1967725339} + - component: {fileID: 1967725341} + - component: {fileID: 1967725340} + m_Layer: 0 + m_Name: axis_x13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1967725339 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967725338} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1498267858} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 677.2, y: -33} + m_SizeDelta: {x: 156.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1967725340 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967725338} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x4 +--- !u!222 &1967725341 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967725338} + m_CullTransparentMesh: 0 --- !u!1 &1967912989 GameObject: m_ObjectHideFlags: 1 @@ -1305686,6 +1571395,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1977748809} m_CullTransparentMesh: 0 +--- !u!1 &1978118434 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1978118435} + - component: {fileID: 1978118437} + - component: {fileID: 1978118436} + m_Layer: 0 + m_Name: axis_y10 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1978118435 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1978118434} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2053519850} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1978118436 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1978118434} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1978118437 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1978118434} + m_CullTransparentMesh: 0 --- !u!1 &1978359086 GameObject: m_ObjectHideFlags: 1 @@ -1307167,6 +1572954,7 @@ RectTransform: - {fileID: 2133882624} - {fileID: 1117086760} - {fileID: 1885815269} + - {fileID: 607091243} m_Father: {fileID: 834546373} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -1307405,6 +1573193,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1307438,6 +1573232,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1307476,6 +1573271,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1307703,6 +1573499,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 1 m_RingGap: 10 @@ -1307896,6 +1573693,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1307915,6 +1573715,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1307965,6 +1573768,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1307984,6 +1573790,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1308073,6 +1573882,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1308092,6 +1573904,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1308143,6 +1573958,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1308162,6 +1573980,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1308552,6 +1574373,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Y Axis Inverse @@ -1308585,6 +1574412,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1308623,6 +1574451,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1309356,6 +1575185,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1309549,6 +1575379,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1309568,6 +1575401,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1309618,6 +1575454,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1309637,6 +1575476,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1309726,6 +1575568,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1309745,6 +1575590,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1309796,6 +1575644,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1309815,6 +1575666,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1309893,6 +1575747,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1309912,6 +1575769,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1309963,6 +1575823,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1309982,6 +1575845,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1310060,6 +1575926,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1310079,6 +1575948,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1310130,6 +1576002,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1310149,6 +1576024,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1310227,6 +1576105,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1310246,6 +1576127,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1310297,6 +1576181,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1310316,6 +1576203,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1310394,6 +1576284,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1310413,6 +1576306,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1310464,6 +1576360,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1310483,6 +1576382,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1312248,6 +1578150,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2000867974} m_CullTransparentMesh: 0 +--- !u!1 &2001395444 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2001395445} + - component: {fileID: 2001395447} + - component: {fileID: 2001395446} + m_Layer: 0 + m_Name: painter_9 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2001395445 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2001395444} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2001395446 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2001395444} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &2001395447 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2001395444} + m_CullTransparentMesh: 0 --- !u!1 &2001495916 GameObject: m_ObjectHideFlags: 0 @@ -1315584,6 +1581550,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2022668998} m_CullTransparentMesh: 0 +--- !u!1 &2022711469 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2022711470} + - component: {fileID: 2022711472} + - component: {fileID: 2022711471} + m_Layer: 0 + m_Name: painter_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2022711470 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2022711469} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2022711471 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2022711469} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &2022711472 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2022711469} + m_CullTransparentMesh: 0 --- !u!1 &2022893860 GameObject: m_ObjectHideFlags: 0 @@ -1315763,6 +1581793,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2023220252} m_CullTransparentMesh: 0 +--- !u!1 &2023419334 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2023419335} + - component: {fileID: 2023419337} + - component: {fileID: 2023419336} + m_Layer: 0 + m_Name: painter_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2023419335 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2023419334} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 651764999} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2023419336 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2023419334} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &2023419337 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2023419334} + m_CullTransparentMesh: 0 --- !u!1 &2023601166 GameObject: m_ObjectHideFlags: 0 @@ -1318309,6 +1584403,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &2034465803 GameObject: m_ObjectHideFlags: 0 @@ -1319039,6 +1585146,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2038492862} m_CullTransparentMesh: 0 +--- !u!1 &2038689680 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2038689681} + - component: {fileID: 2038689683} + - component: {fileID: 2038689682} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2038689681 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2038689680} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 45451824} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &2038689682 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2038689680} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2038689683 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2038689680} + m_CullTransparentMesh: 0 --- !u!1 &2038924418 GameObject: m_ObjectHideFlags: 0 @@ -1320383,6 +1586568,70 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2044334690} m_CullTransparentMesh: 0 +--- !u!1 &2044627340 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2044627341} + - component: {fileID: 2044627343} + - component: {fileID: 2044627342} + m_Layer: 0 + m_Name: painter_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2044627341 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2044627340} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1070880691} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2044627342 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2044627340} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &2044627343 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2044627340} + m_CullTransparentMesh: 0 --- !u!1 &2044777427 GameObject: m_ObjectHideFlags: 0 @@ -1322789,6 +1589038,47 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2053206552} m_CullTransparentMesh: 0 +--- !u!1 &2053519849 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2053519850} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2053519850 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2053519849} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1978118435} + - {fileID: 1339036304} + - {fileID: 1431332240} + - {fileID: 1158804606} + - {fileID: 515201568} + - {fileID: 1661633286} + m_Father: {fileID: 1070880691} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &2054534861 GameObject: m_ObjectHideFlags: 0 @@ -1323246,6 +1589536,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &2055396544 GameObject: m_ObjectHideFlags: 1 @@ -1323700,6 +1590003,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1323733,6 +1590042,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1323771,6 +1590081,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1324466,6 +1590777,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1324659,6 +1590971,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1324678,6 +1590993,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1324728,6 +1591046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1324747,6 +1591068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1324836,6 +1591160,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1324855,6 +1591182,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1324906,6 +1591236,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1324925,6 +1591258,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1325026,6 +1591362,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1325219,6 +1591556,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1325238,6 +1591578,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1325288,6 +1591631,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1325307,6 +1591653,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1325396,6 +1591745,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1325415,6 +1591767,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1325466,6 +1591821,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1325485,6 +1591843,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1325568,6 +1591929,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1325587,6 +1591951,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1325638,6 +1592005,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1325657,6 +1592027,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1325759,6 +1592132,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1325952,6 +1592326,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1325971,6 +1592348,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1326021,6 +1592401,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1326040,6 +1592423,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1326129,6 +1592515,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1326148,6 +1592537,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1326199,6 +1592591,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1326218,6 +1592613,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1326306,6 +1592704,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1326325,6 +1592726,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1326376,6 +1592780,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1326395,6 +1592802,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1326953,6 +1593363,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Two Serie With Selected @@ -1326986,6 +1593402,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 1 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 1 m_Location: @@ -1327024,6 +1593441,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1327251,6 +1593669,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1327444,6 +1593863,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1327463,6 +1593885,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1327513,6 +1593938,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1327532,6 +1593960,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1327621,6 +1594052,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1327640,6 +1594074,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1327691,6 +1594128,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1327710,6 +1594150,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1327788,6 +1594231,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1327807,6 +1594253,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1327858,6 +1594307,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1327877,6 +1594329,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1327955,6 +1594410,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1327974,6 +1594432,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328025,6 +1594486,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328044,6 +1594508,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328141,6 +1594608,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1328334,6 +1594802,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328353,6 +1594824,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328403,6 +1594877,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328422,6 +1594899,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328511,6 +1594991,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328530,6 +1595013,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328581,6 +1595067,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328600,6 +1595089,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328678,6 +1595170,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328697,6 +1595192,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328748,6 +1595246,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328767,6 +1595268,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328845,6 +1595349,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328864,6 +1595371,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1328915,6 +1595425,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1328934,6 +1595447,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329012,6 +1595528,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329031,6 +1595550,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329082,6 +1595604,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329101,6 +1595626,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329179,6 +1595707,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329198,6 +1595729,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329249,6 +1595783,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329268,6 +1595805,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329346,6 +1595886,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329365,6 +1595908,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329416,6 +1595962,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329435,6 +1595984,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329513,6 +1596065,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329532,6 +1596087,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329583,6 +1596141,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329602,6 +1596163,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329680,6 +1596244,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329699,6 +1596266,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1329750,6 +1596320,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1329769,6 +1596342,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1331762,6 +1598338,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Gradient By ItemStyle @@ -1331795,6 +1598377,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1331833,6 +1598416,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1332566,6 +1599150,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1332759,6 +1599344,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1332778,6 +1599366,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1332828,6 +1599419,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1332847,6 +1599441,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1332936,6 +1599533,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1332955,6 +1599555,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333006,6 +1599609,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333025,6 +1599631,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333103,6 +1599712,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333122,6 +1599734,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333173,6 +1599788,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333192,6 +1599810,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333270,6 +1599891,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333289,6 +1599913,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333340,6 +1599967,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333359,6 +1599989,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333437,6 +1600070,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333456,6 +1600092,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333507,6 +1600146,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333526,6 +1600168,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333604,6 +1600249,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333623,6 +1600271,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333674,6 +1600325,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1333693,6 +1600347,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1333790,6 +1600447,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 @@ -1333983,6 +1600641,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334002,6 +1600663,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334052,6 +1600716,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334071,6 +1600738,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334160,6 +1600830,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334179,6 +1600852,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334230,6 +1600906,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334249,6 +1600928,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334327,6 +1601009,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334346,6 +1601031,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334397,6 +1601085,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334416,6 +1601107,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334494,6 +1601188,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334513,6 +1601210,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334564,6 +1601264,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334583,6 +1601286,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334661,6 +1601367,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334680,6 +1601389,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334731,6 +1601443,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334750,6 +1601465,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334828,6 +1601546,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334847,6 +1601568,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1334898,6 +1601622,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1334917,6 +1601644,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1335442,6 +1602172,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Chart Title @@ -1335475,6 +1602211,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1335513,6 +1602250,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1335740,6 +1602478,7 @@ MonoBehaviour: m_Max: 100 m_StartAngle: -135 m_EndAngle: 135 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 1 m_RingGap: 10 @@ -1335921,6 +1602660,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1335940,6 +1602682,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1335990,6 +1602735,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1336009,6 +1602757,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1336098,6 +1602849,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1336117,6 +1602871,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1336168,6 +1602925,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1336187,6 +1602947,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1338419,6 +1605182,70 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &2080070882 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2080070883} + - component: {fileID: 2080070885} + - component: {fileID: 2080070884} + m_Layer: 0 + m_Name: painter_7 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2080070883 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080070882} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2080070884 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080070882} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01c85cd323a9f4dfb803470695bd0944, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!222 &2080070885 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080070882} + m_CullTransparentMesh: 0 --- !u!1 &2080929306 GameObject: m_ObjectHideFlags: 1 @@ -1339530,6 +1606357,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Selected @@ -1339563,6 +1606396,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1339601,6 +1606435,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1339828,6 +1606663,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1340021,6 +1606857,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340040,6 +1606879,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340090,6 +1606932,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340109,6 +1606954,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340198,6 +1607046,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340217,6 +1607068,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340268,6 +1607122,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340287,6 +1607144,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340365,6 +1607225,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340384,6 +1607247,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340435,6 +1607301,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340454,6 +1607323,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340532,6 +1607404,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340551,6 +1607426,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340602,6 +1607480,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340621,6 +1607502,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340699,6 +1607583,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340718,6 +1607605,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340769,6 +1607659,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340788,6 +1607681,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340866,6 +1607762,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340885,6 +1607784,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1340936,6 +1607838,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1340955,6 +1607860,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1342166,6 +1609074,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &2090885617 GameObject: m_ObjectHideFlags: 0 @@ -1342478,6 +1609399,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2091672948} m_CullTransparentMesh: 0 +--- !u!1 &2092178464 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2092178465} + - component: {fileID: 2092178467} + - component: {fileID: 2092178466} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2092178465 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2092178464} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1841565855} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 432} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2092178466 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2092178464} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2092178467 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2092178464} + m_CullTransparentMesh: 0 --- !u!1 &2092346582 GameObject: m_ObjectHideFlags: 0 @@ -1342858,6 +1609857,19 @@ MonoBehaviour: m_ScatterSymbolSelectedSize: 30 m_PieTooltipExtraRadius: 8 m_PieSelectedOffset: 8 + m_CandlestickColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickColor0: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderWidth: 0 + m_CandlestickBorderColor: + serializedVersion: 2 + rgba: 0 + m_CandlestickBorderColor0: + serializedVersion: 2 + rgba: 0 --- !u!1 &2092995451 GameObject: m_ObjectHideFlags: 0 @@ -1345383,6 +1612395,84 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &2106595010 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2106595011} + - component: {fileID: 2106595013} + - component: {fileID: 2106595012} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2106595011 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2106595010} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1795514725} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &2106595012 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2106595010} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2106595013 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2106595010} + m_CullTransparentMesh: 0 --- !u!1 &2106727625 GameObject: m_ObjectHideFlags: 0 @@ -1346156,6 +1613246,41 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2111670471} m_CullTransparentMesh: 0 +--- !u!1 &2112010730 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2112010731} + m_Layer: 0 + m_Name: legend0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2112010731 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2112010730} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1033575168} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &2112343147 GameObject: m_ObjectHideFlags: 0 @@ -1346945,6 +1614070,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2114655498} m_CullTransparentMesh: 0 +--- !u!1 &2115079463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2115079464} + - component: {fileID: 2115079466} + - component: {fileID: 2115079465} + m_Layer: 0 + m_Name: axis_y13 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2115079464 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2115079463} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1889259906} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 842, y: 257.2} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2115079465 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2115079463} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &2115079466 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2115079463} + m_CullTransparentMesh: 0 --- !u!1 &2115841505 GameObject: m_ObjectHideFlags: 0 @@ -1349351,6 +1616554,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2126812942} m_CullTransparentMesh: 0 +--- !u!1 &2126879548 +GameObject: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2126879549} + m_Layer: 0 + m_Name: datazoom0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2126879549 +RectTransform: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2126879548} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 979457391} + - {fileID: 129269981} + m_Father: {fileID: 651764999} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 864, y: 432} + m_Pivot: {x: 0, y: 1} --- !u!1 &2128267389 GameObject: m_ObjectHideFlags: 0 @@ -1349768,6 +1617008,12 @@ MonoBehaviour: m_LineSmoothness: 2 m_LineSegmentDistance: 3 m_CicleSmoothness: 2 + m_LegendIconLineWidth: 2 + m_LegendIconCornerRadius: + - 0.25 + - 0.25 + - 0.25 + - 0.25 m_Titles: - m_Show: 1 m_Text: Stack & Empty Bar @@ -1349801,6 +1617047,7 @@ MonoBehaviour: m_Bottom: 0 m_Legends: - m_Show: 0 + m_IconType: 0 m_SelectedMode: 0 m_Orient: 0 m_Location: @@ -1349839,6 +1617086,7 @@ MonoBehaviour: m_NumericFormatter: m_PaddingLeftRight: 5 m_PaddingTopBottom: 5 + m_IgnoreDataShow: 0 m_IgnoreDataDefaultContent: '-' m_AlwayShow: 0 m_Offset: {x: 18, y: -25} @@ -1350573,6 +1617821,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1350766,6 +1618015,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 16777215 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1350785,6 +1618037,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1350835,6 +1618090,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1350854,6 +1618112,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1350943,6 +1618204,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1350962,6 +1618226,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351013,6 +1618280,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351032,6 +1618302,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351110,6 +1618383,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351129,6 +1618405,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351180,6 +1618459,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351199,6 +1618481,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351277,6 +1618562,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351296,6 +1618584,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351347,6 +1618638,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351366,6 +1618660,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351444,6 +1618741,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351463,6 +1618763,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351514,6 +1618817,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351533,6 +1618839,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351611,6 +1618920,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351630,6 +1618942,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351681,6 +1618996,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351700,6 +1619018,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351778,6 +1619099,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351797,6 +1619121,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351848,6 +1619175,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1351867,6 +1619197,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1351964,6 +1619297,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 + m_MinAngle: 0 m_Clockwise: 0 m_RoundCap: 0 m_RingGap: 10 @@ -1352157,6 +1619491,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352176,6 +1619513,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352226,6 +1619566,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352245,6 +1619588,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352334,6 +1619680,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352353,6 +1619702,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352404,6 +1619756,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352423,6 +1619778,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352501,6 +1619859,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352520,6 +1619881,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352571,6 +1619935,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352590,6 +1619957,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352668,6 +1620038,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352687,6 +1620060,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352738,6 +1620114,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352757,6 +1620136,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352835,6 +1620217,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352854,6 +1620239,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1352905,6 +1620293,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1352924,6 +1620315,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1353002,6 +1620396,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1353021,6 +1620418,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1353072,6 +1620472,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1353091,6 +1620494,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1353169,6 +1620575,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1353188,6 +1620597,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1353239,6 +1620651,9 @@ MonoBehaviour: m_Color: serializedVersion: 2 rgba: 0 + m_Color0: + serializedVersion: 2 + rgba: 0 m_ToColor: serializedVersion: 2 rgba: 0 @@ -1353258,6 +1620673,9 @@ MonoBehaviour: m_BorderColor: serializedVersion: 2 rgba: 0 + m_BorderColor0: + serializedVersion: 2 + rgba: 0 m_Opacity: 1 m_TooltipFormatter: m_NumericFormatter: @@ -1354171,6 +1621589,118 @@ MonoBehaviour: callback: m_PersistentCalls: m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] --- !u!114 &2133882626 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1355955,6 +1623485,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2142332845} m_CullTransparentMesh: 0 +--- !u!1 &2143151798 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2143151799} + - component: {fileID: 2143151801} + - component: {fileID: 2143151800} + m_Layer: 0 + m_Name: title_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2143151799 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2143151798} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1606064898} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -21.600006} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2143151800 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2143151798} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &2143151801 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2143151798} + m_CullTransparentMesh: 0 --- !u!1 &2143167458 GameObject: m_ObjectHideFlags: 0 @@ -1356564,6 +1624172,162 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 574.6667, y: 287.33334} m_Pivot: {x: 0, y: 1} +--- !u!1 &2145814539 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2145814540} + - component: {fileID: 2145814542} + - component: {fileID: 2145814541} + m_Layer: 0 + m_Name: axis_y5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2145814540 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2145814539} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 801904826} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 382} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2145814541 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2145814539} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 50 +--- !u!222 &2145814542 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2145814539} + m_CullTransparentMesh: 0 +--- !u!1 &2146839786 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2146839787} + - component: {fileID: 2146839789} + - component: {fileID: 2146839788} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2146839787 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2146839786} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1321135645} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 447.387, y: -379} + m_SizeDelta: {x: 154.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2146839788 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2146839786} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 0 + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 459 +--- !u!222 &2146839789 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2146839786} + m_CullTransparentMesh: 0 --- !u!1 &2147001135 GameObject: m_ObjectHideFlags: 0